blob: 75c2c79727549a34f1c07fa87e7ec135ec1161c6 [file] [log] [blame]
bayramov325fa1c2016-09-08 01:42:46 -07001# -*- coding: utf-8 -*-
2
3##
bhangare1a0b97c2017-06-21 02:20:15 -07004# Copyright 2016-2017 VMware Inc.
5# This file is part of ETSI OSM
bayramov325fa1c2016-09-08 01:42:46 -07006# 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
bhangare1a0b97c2017-06-21 02:20:15 -070021# contact: osslegalrouting@vmware.com
bayramov325fa1c2016-09-08 01:42:46 -070022##
23
bayramov5761ad12016-10-04 09:00:30 +040024"""
bayramov325fa1c2016-09-08 01:42:46 -070025vimconn_vmware implementation an Abstract class in order to interact with VMware vCloud Director.
26mbayramov@vmware.com
bayramov5761ad12016-10-04 09:00:30 +040027"""
bayramovfe3f3c92016-10-04 07:53:41 +040028from progressbar import Percentage, Bar, ETA, FileTransferSpeed, ProgressBar
bayramovbd6160f2016-09-28 04:12:05 +040029
30import vimconn
bayramov325fa1c2016-09-08 01:42:46 -070031import os
bayramovef390722016-09-27 03:34:46 -070032import traceback
bayramovef390722016-09-27 03:34:46 -070033import itertools
bayramov325fa1c2016-09-08 01:42:46 -070034import requests
bhangarefda5f7c2017-01-12 23:50:34 -080035import ssl
36import atexit
37
38from pyVmomi import vim, vmodl
39from pyVim.connect import SmartConnect, Disconnect
bayramov325fa1c2016-09-08 01:42:46 -070040
bayramovef390722016-09-27 03:34:46 -070041from xml.etree import ElementTree as XmlElementTree
bhangarea92ae392017-01-12 22:30:29 -080042from lxml import etree as lxmlElementTree
bayramov325fa1c2016-09-08 01:42:46 -070043
bayramovef390722016-09-27 03:34:46 -070044import yaml
kasarc5bf2932018-03-09 04:15:22 -080045from pyvcloud.vcd.client import BasicLoginCredentials,Client,VcdTaskException
46from pyvcloud.vcd.vdc import VDC
47from pyvcloud.vcd.org import Org
48import re
49from pyvcloud.vcd.vapp import VApp
bayramov325fa1c2016-09-08 01:42:46 -070050from xml.sax.saxutils import escape
bayramov325fa1c2016-09-08 01:42:46 -070051import logging
52import json
bayramov325fa1c2016-09-08 01:42:46 -070053import time
54import uuid
55import httplib
kasarc5bf2932018-03-09 04:15:22 -080056#For python3
57#import http.client
kate15f1c382016-12-15 01:12:40 -080058import hashlib
bhangare0e571a92017-01-12 04:02:23 -080059import socket
60import struct
61import netaddr
kasarde691232017-03-25 03:37:31 -070062import random
bayramov325fa1c2016-09-08 01:42:46 -070063
bayramovbd6160f2016-09-28 04:12:05 +040064# global variable for vcd connector type
65STANDALONE = 'standalone'
66
kate15f1c382016-12-15 01:12:40 -080067# key for flavor dicts
68FLAVOR_RAM_KEY = 'ram'
69FLAVOR_VCPUS_KEY = 'vcpus'
bhangarea92ae392017-01-12 22:30:29 -080070FLAVOR_DISK_KEY = 'disk'
kasarde691232017-03-25 03:37:31 -070071DEFAULT_IP_PROFILE = {'dhcp_count':50,
bhangare0e571a92017-01-12 04:02:23 -080072 'dhcp_enabled':True,
kasarde691232017-03-25 03:37:31 -070073 'ip_version':"IPv4"
bhangare0e571a92017-01-12 04:02:23 -080074 }
75# global variable for wait time
kate13ab2c42016-12-23 01:34:24 -080076INTERVAL_TIME = 5
77MAX_WAIT_TIME = 1800
bayramov325fa1c2016-09-08 01:42:46 -070078
kasarc5bf2932018-03-09 04:15:22 -080079API_VERSION = '5.9'
bayramovbd6160f2016-09-28 04:12:05 +040080
kasarc5bf2932018-03-09 04:15:22 -080081__author__ = "Mustafa Bayramov, Arpita Kate, Sachin Bhangare, Prakash Kasar"
82__date__ = "$09-Mar-2018 11:09:29$"
83__version__ = '0.2'
bayramov325fa1c2016-09-08 01:42:46 -070084
bayramovef390722016-09-27 03:34:46 -070085# -1: "Could not be created",
86# 0: "Unresolved",
87# 1: "Resolved",
88# 2: "Deployed",
89# 3: "Suspended",
90# 4: "Powered on",
91# 5: "Waiting for user input",
92# 6: "Unknown state",
93# 7: "Unrecognized state",
94# 8: "Powered off",
95# 9: "Inconsistent state",
96# 10: "Children do not all have the same status",
97# 11: "Upload initiated, OVF descriptor pending",
98# 12: "Upload initiated, copying contents",
99# 13: "Upload initiated , disk contents pending",
100# 14: "Upload has been quarantined",
101# 15: "Upload quarantine period has expired"
102
103# mapping vCD status to MANO
104vcdStatusCode2manoFormat = {4: 'ACTIVE',
105 7: 'PAUSED',
106 3: 'SUSPENDED',
107 8: 'INACTIVE',
108 12: 'BUILD',
109 -1: 'ERROR',
110 14: 'DELETED'}
111
112#
113netStatus2manoFormat = {'ACTIVE': 'ACTIVE', 'PAUSED': 'PAUSED', 'INACTIVE': 'INACTIVE', 'BUILD': 'BUILD',
114 'ERROR': 'ERROR', 'DELETED': 'DELETED'
115 }
116
bayramovbd6160f2016-09-28 04:12:05 +0400117class vimconnector(vimconn.vimconnector):
kateeb044522017-03-06 23:54:39 -0800118 # dict used to store flavor in memory
119 flavorlist = {}
120
bayramovbd6160f2016-09-28 04:12:05 +0400121 def __init__(self, uuid=None, name=None, tenant_id=None, tenant_name=None,
tiernob3d36742017-03-03 23:51:05 +0100122 url=None, url_admin=None, user=None, passwd=None, log_level=None, config={}, persistent_info={}):
bayramovb6ffe792016-09-28 11:50:56 +0400123 """
124 Constructor create vmware connector to vCloud director.
125
126 By default construct doesn't validate connection state. So client can create object with None arguments.
127 If client specified username , password and host and VDC name. Connector initialize other missing attributes.
128
129 a) It initialize organization UUID
130 b) Initialize tenant_id/vdc ID. (This information derived from tenant name)
131
132 Args:
133 uuid - is organization uuid.
134 name - is organization name that must be presented in vCloud director.
135 tenant_id - is VDC uuid it must be presented in vCloud director
136 tenant_name - is VDC name.
137 url - is hostname or ip address of vCloud director
138 url_admin - same as above.
139 user - is user that administrator for organization. Caller must make sure that
140 username has right privileges.
141
142 password - is password for a user.
143
144 VMware connector also requires PVDC administrative privileges and separate account.
145 This variables must be passed via config argument dict contains keys
146
147 dict['admin_username']
148 dict['admin_password']
kateeb044522017-03-06 23:54:39 -0800149 config - Provide NSX and vCenter information
bayramovb6ffe792016-09-28 11:50:56 +0400150
151 Returns:
152 Nothing.
153 """
154
bayramovbd6160f2016-09-28 04:12:05 +0400155 vimconn.vimconnector.__init__(self, uuid, name, tenant_id, tenant_name, url,
156 url_admin, user, passwd, log_level, config)
kate15f1c382016-12-15 01:12:40 -0800157
158 self.logger = logging.getLogger('openmano.vim.vmware')
159 self.logger.setLevel(10)
tiernob3d36742017-03-03 23:51:05 +0100160 self.persistent_info = persistent_info
kate15f1c382016-12-15 01:12:40 -0800161
bayramovef390722016-09-27 03:34:46 -0700162 self.name = name
kate15f1c382016-12-15 01:12:40 -0800163 self.id = uuid
bayramovef390722016-09-27 03:34:46 -0700164 self.url = url
bayramov325fa1c2016-09-08 01:42:46 -0700165 self.url_admin = url_admin
166 self.tenant_id = tenant_id
167 self.tenant_name = tenant_name
bayramovef390722016-09-27 03:34:46 -0700168 self.user = user
169 self.passwd = passwd
170 self.config = config
171 self.admin_password = None
172 self.admin_user = None
kate15f1c382016-12-15 01:12:40 -0800173 self.org_name = ""
bhangare985a1fd2017-01-31 01:53:21 -0800174 self.nsx_manager = None
175 self.nsx_user = None
176 self.nsx_password = None
sbhangarea8e5b782018-06-21 02:10:03 -0700177 self.availability_zone = None
bayramovef390722016-09-27 03:34:46 -0700178
kasarc5bf2932018-03-09 04:15:22 -0800179 # Disable warnings from self-signed certificates.
180 requests.packages.urllib3.disable_warnings()
181
kate15f1c382016-12-15 01:12:40 -0800182 if tenant_name is not None:
183 orgnameandtenant = tenant_name.split(":")
184 if len(orgnameandtenant) == 2:
katec324e002016-12-23 00:54:47 -0800185 self.tenant_name = orgnameandtenant[1]
186 self.org_name = orgnameandtenant[0]
kate15f1c382016-12-15 01:12:40 -0800187 else:
188 self.tenant_name = tenant_name
bhangarea92ae392017-01-12 22:30:29 -0800189 if "orgname" in config:
kate15f1c382016-12-15 01:12:40 -0800190 self.org_name = config['orgname']
katec324e002016-12-23 00:54:47 -0800191
tiernofe789902016-09-29 14:20:44 +0000192 if log_level:
bayramov5761ad12016-10-04 09:00:30 +0400193 self.logger.setLevel(getattr(logging, log_level))
bayramov325fa1c2016-09-08 01:42:46 -0700194
bayramovef390722016-09-27 03:34:46 -0700195 try:
196 self.admin_user = config['admin_username']
197 self.admin_password = config['admin_password']
198 except KeyError:
bayramovbd6160f2016-09-28 04:12:05 +0400199 raise vimconn.vimconnException(message="Error admin username or admin password is empty.")
bayramov325fa1c2016-09-08 01:42:46 -0700200
bhangare985a1fd2017-01-31 01:53:21 -0800201 try:
202 self.nsx_manager = config['nsx_manager']
203 self.nsx_user = config['nsx_user']
204 self.nsx_password = config['nsx_password']
205 except KeyError:
206 raise vimconn.vimconnException(message="Error: nsx manager or nsx user or nsx password is empty in Config")
207
kateeb044522017-03-06 23:54:39 -0800208 self.vcenter_ip = config.get("vcenter_ip", None)
209 self.vcenter_port = config.get("vcenter_port", None)
210 self.vcenter_user = config.get("vcenter_user", None)
211 self.vcenter_password = config.get("vcenter_password", None)
212
sbhangarea8e5b782018-06-21 02:10:03 -0700213 #Set availability zone for Affinity rules
214 self.availability_zone = self.set_availability_zones()
215
kateac1e3792017-04-01 02:16:39 -0700216# ############# Stub code for SRIOV #################
217# try:
218# self.dvs_name = config['dv_switch_name']
219# except KeyError:
220# raise vimconn.vimconnException(message="Error: distributed virtaul switch name is empty in Config")
221#
222# self.vlanID_range = config.get("vlanID_range", None)
223
bayramovef390722016-09-27 03:34:46 -0700224 self.org_uuid = None
kasarc5bf2932018-03-09 04:15:22 -0800225 self.client = None
bayramov325fa1c2016-09-08 01:42:46 -0700226
227 if not url:
bayramov5761ad12016-10-04 09:00:30 +0400228 raise vimconn.vimconnException('url param can not be NoneType')
bayramov325fa1c2016-09-08 01:42:46 -0700229
bayramovef390722016-09-27 03:34:46 -0700230 if not self.url_admin: # try to use normal url
bayramov325fa1c2016-09-08 01:42:46 -0700231 self.url_admin = self.url
232
kate15f1c382016-12-15 01:12:40 -0800233 logging.debug("UUID: {} name: {} tenant_id: {} tenant name {}".format(self.id, self.org_name,
bayramovef390722016-09-27 03:34:46 -0700234 self.tenant_id, self.tenant_name))
235 logging.debug("vcd url {} vcd username: {} vcd password: {}".format(self.url, self.user, self.passwd))
236 logging.debug("vcd admin username {} vcd admin passowrd {}".format(self.admin_user, self.admin_password))
bayramov325fa1c2016-09-08 01:42:46 -0700237
bayramovef390722016-09-27 03:34:46 -0700238 # initialize organization
bayramovbd6160f2016-09-28 04:12:05 +0400239 if self.user is not None and self.passwd is not None and self.url:
240 self.init_organization()
bayramovef390722016-09-27 03:34:46 -0700241
242 def __getitem__(self, index):
kate15f1c382016-12-15 01:12:40 -0800243 if index == 'name':
244 return self.name
bayramovef390722016-09-27 03:34:46 -0700245 if index == 'tenant_id':
bayramov325fa1c2016-09-08 01:42:46 -0700246 return self.tenant_id
bayramovef390722016-09-27 03:34:46 -0700247 if index == 'tenant_name':
bayramov325fa1c2016-09-08 01:42:46 -0700248 return self.tenant_name
bayramovef390722016-09-27 03:34:46 -0700249 elif index == 'id':
bayramov325fa1c2016-09-08 01:42:46 -0700250 return self.id
bayramovef390722016-09-27 03:34:46 -0700251 elif index == 'org_name':
252 return self.org_name
253 elif index == 'org_uuid':
254 return self.org_uuid
255 elif index == 'user':
bayramov325fa1c2016-09-08 01:42:46 -0700256 return self.user
bayramovef390722016-09-27 03:34:46 -0700257 elif index == 'passwd':
bayramov325fa1c2016-09-08 01:42:46 -0700258 return self.passwd
bayramovef390722016-09-27 03:34:46 -0700259 elif index == 'url':
bayramov325fa1c2016-09-08 01:42:46 -0700260 return self.url
bayramovef390722016-09-27 03:34:46 -0700261 elif index == 'url_admin':
bayramov325fa1c2016-09-08 01:42:46 -0700262 return self.url_admin
bayramovef390722016-09-27 03:34:46 -0700263 elif index == "config":
bayramov325fa1c2016-09-08 01:42:46 -0700264 return self.config
265 else:
bayramovef390722016-09-27 03:34:46 -0700266 raise KeyError("Invalid key '%s'" % str(index))
bayramov325fa1c2016-09-08 01:42:46 -0700267
bayramovef390722016-09-27 03:34:46 -0700268 def __setitem__(self, index, value):
kate15f1c382016-12-15 01:12:40 -0800269 if index == 'name':
270 self.name = value
bayramovef390722016-09-27 03:34:46 -0700271 if index == 'tenant_id':
bayramov325fa1c2016-09-08 01:42:46 -0700272 self.tenant_id = value
bayramovef390722016-09-27 03:34:46 -0700273 if index == 'tenant_name':
bayramov325fa1c2016-09-08 01:42:46 -0700274 self.tenant_name = value
bayramovef390722016-09-27 03:34:46 -0700275 elif index == 'id':
bayramov325fa1c2016-09-08 01:42:46 -0700276 self.id = value
bayramovef390722016-09-27 03:34:46 -0700277 elif index == 'org_name':
278 self.org_name = value
bayramovef390722016-09-27 03:34:46 -0700279 elif index == 'org_uuid':
kate15f1c382016-12-15 01:12:40 -0800280 self.org_uuid = value
bayramovef390722016-09-27 03:34:46 -0700281 elif index == 'user':
bayramov325fa1c2016-09-08 01:42:46 -0700282 self.user = value
bayramovef390722016-09-27 03:34:46 -0700283 elif index == 'passwd':
bayramov325fa1c2016-09-08 01:42:46 -0700284 self.passwd = value
bayramovef390722016-09-27 03:34:46 -0700285 elif index == 'url':
bayramov325fa1c2016-09-08 01:42:46 -0700286 self.url = value
bayramovef390722016-09-27 03:34:46 -0700287 elif index == 'url_admin':
bayramov325fa1c2016-09-08 01:42:46 -0700288 self.url_admin = value
289 else:
bayramovef390722016-09-27 03:34:46 -0700290 raise KeyError("Invalid key '%s'" % str(index))
bayramov325fa1c2016-09-08 01:42:46 -0700291
bayramovef390722016-09-27 03:34:46 -0700292 def connect_as_admin(self):
bayramovb6ffe792016-09-28 11:50:56 +0400293 """ Method connect as pvdc admin user to vCloud director.
294 There are certain action that can be done only by provider vdc admin user.
295 Organization creation / provider network creation etc.
bayramovef390722016-09-27 03:34:46 -0700296
297 Returns:
kasarc5bf2932018-03-09 04:15:22 -0800298 The return client object that latter can be used to connect to vcloud director as admin for provider vdc
bayramovef390722016-09-27 03:34:46 -0700299 """
300
kasarc5bf2932018-03-09 04:15:22 -0800301 self.logger.debug("Logging into vCD {} as admin.".format(self.org_name))
bayramov325fa1c2016-09-08 01:42:46 -0700302
kasarc5bf2932018-03-09 04:15:22 -0800303 try:
304 host = self.url
305 org = 'System'
306 client_as_admin = Client(host, verify_ssl_certs=False)
307 client_as_admin.set_credentials(BasicLoginCredentials(self.admin_user, org, self.admin_password))
308 except Exception as e:
309 raise vimconn.vimconnException(
310 "Can't connect to a vCloud director as: {} with exception {}".format(self.admin_user, e))
bayramov325fa1c2016-09-08 01:42:46 -0700311
kasarc5bf2932018-03-09 04:15:22 -0800312 return client_as_admin
bayramov325fa1c2016-09-08 01:42:46 -0700313
bayramovef390722016-09-27 03:34:46 -0700314 def connect(self):
315 """ Method connect as normal user to vCloud director.
316
317 Returns:
kasarc5bf2932018-03-09 04:15:22 -0800318 The return client object that latter can be used to connect to vCloud director as admin for VDC
bayramovef390722016-09-27 03:34:46 -0700319 """
320
bayramovb6ffe792016-09-28 11:50:56 +0400321 try:
kasarc5bf2932018-03-09 04:15:22 -0800322 self.logger.debug("Logging into vCD {} as {} to datacenter {}.".format(self.org_name,
kate15f1c382016-12-15 01:12:40 -0800323 self.user,
324 self.org_name))
kasarc5bf2932018-03-09 04:15:22 -0800325 host = self.url
326 client = Client(host, verify_ssl_certs=False)
327 client.set_credentials(BasicLoginCredentials(self.user, self.org_name, self.passwd))
bayramovb6ffe792016-09-28 11:50:56 +0400328 except:
kate15f1c382016-12-15 01:12:40 -0800329 raise vimconn.vimconnConnectionException("Can't connect to a vCloud director org: "
330 "{} as user: {}".format(self.org_name, self.user))
bayramov325fa1c2016-09-08 01:42:46 -0700331
kasarc5bf2932018-03-09 04:15:22 -0800332 return client
bayramov325fa1c2016-09-08 01:42:46 -0700333
bayramovbd6160f2016-09-28 04:12:05 +0400334 def init_organization(self):
335 """ Method initialize organization UUID and VDC parameters.
336
337 At bare minimum client must provide organization name that present in vCloud director and VDC.
338
339 The VDC - UUID ( tenant_id) will be initialized at the run time if client didn't call constructor.
340 The Org - UUID will be initialized at the run time if data center present in vCloud director.
bayramov325fa1c2016-09-08 01:42:46 -0700341
bayramovef390722016-09-27 03:34:46 -0700342 Returns:
343 The return vca object that letter can be used to connect to vcloud direct as admin
344 """
kasarc5bf2932018-03-09 04:15:22 -0800345 client = self.connect()
346 if not client:
347 raise vimconn.vimconnConnectionException("Failed to connect vCD.")
bhangare1a0b97c2017-06-21 02:20:15 -0700348
kasarc5bf2932018-03-09 04:15:22 -0800349 self.client = client
bayramovef390722016-09-27 03:34:46 -0700350 try:
351 if self.org_uuid is None:
kasarc5bf2932018-03-09 04:15:22 -0800352 org_list = client.get_org_list()
353 for org in org_list.Org:
bayramovbd6160f2016-09-28 04:12:05 +0400354 # we set org UUID at the init phase but we can do it only when we have valid credential.
kasarc5bf2932018-03-09 04:15:22 -0800355 if org.get('name') == self.org_name:
356 self.org_uuid = org.get('href').split('/')[-1]
bayramovbd6160f2016-09-28 04:12:05 +0400357 self.logger.debug("Setting organization UUID {}".format(self.org_uuid))
358 break
bayramovbd6160f2016-09-28 04:12:05 +0400359 else:
360 raise vimconn.vimconnException("Vcloud director organization {} not found".format(self.org_name))
361
362 # if well good we require for org details
363 org_details_dict = self.get_org(org_uuid=self.org_uuid)
364
365 # we have two case if we want to initialize VDC ID or VDC name at run time
366 # tenant_name provided but no tenant id
bayramov5761ad12016-10-04 09:00:30 +0400367 if self.tenant_id is None and self.tenant_name is not None and 'vdcs' in org_details_dict:
bayramovbd6160f2016-09-28 04:12:05 +0400368 vdcs_dict = org_details_dict['vdcs']
bayramovbd6160f2016-09-28 04:12:05 +0400369 for vdc in vdcs_dict:
370 if vdcs_dict[vdc] == self.tenant_name:
371 self.tenant_id = vdc
372 self.logger.debug("Setting vdc uuid {} for organization UUID {}".format(self.tenant_id,
kate15f1c382016-12-15 01:12:40 -0800373 self.org_name))
bayramovbd6160f2016-09-28 04:12:05 +0400374 break
375 else:
376 raise vimconn.vimconnException("Tenant name indicated but not present in vcloud director.")
377 # case two we have tenant_id but we don't have tenant name so we find and set it.
bayramov5761ad12016-10-04 09:00:30 +0400378 if self.tenant_id is not None and self.tenant_name is None and 'vdcs' in org_details_dict:
bayramovbd6160f2016-09-28 04:12:05 +0400379 vdcs_dict = org_details_dict['vdcs']
380 for vdc in vdcs_dict:
381 if vdc == self.tenant_id:
382 self.tenant_name = vdcs_dict[vdc]
383 self.logger.debug("Setting vdc uuid {} for organization UUID {}".format(self.tenant_id,
kate15f1c382016-12-15 01:12:40 -0800384 self.org_name))
bayramovbd6160f2016-09-28 04:12:05 +0400385 break
386 else:
387 raise vimconn.vimconnException("Tenant id indicated but not present in vcloud director")
bayramovef390722016-09-27 03:34:46 -0700388 self.logger.debug("Setting organization uuid {}".format(self.org_uuid))
389 except:
390 self.logger.debug("Failed initialize organization UUID for org {}".format(self.org_name))
391 self.logger.debug(traceback.format_exc())
392 self.org_uuid = None
bayramov325fa1c2016-09-08 01:42:46 -0700393
bayramovef390722016-09-27 03:34:46 -0700394 def new_tenant(self, tenant_name=None, tenant_description=None):
bayramovb6ffe792016-09-28 11:50:56 +0400395 """ Method adds a new tenant to VIM with this name.
396 This action requires access to create VDC action in vCloud director.
bayramovef390722016-09-27 03:34:46 -0700397
bayramovb6ffe792016-09-28 11:50:56 +0400398 Args:
399 tenant_name is tenant_name to be created.
400 tenant_description not used for this call
401
402 Return:
403 returns the tenant identifier in UUID format.
404 If action is failed method will throw vimconn.vimconnException method
bayramovbd6160f2016-09-28 04:12:05 +0400405 """
bayramovef390722016-09-27 03:34:46 -0700406 vdc_task = self.create_vdc(vdc_name=tenant_name)
407 if vdc_task is not None:
408 vdc_uuid, value = vdc_task.popitem()
kasarc5bf2932018-03-09 04:15:22 -0800409 self.logger.info("Created new vdc {} and uuid: {}".format(tenant_name, vdc_uuid))
bayramovef390722016-09-27 03:34:46 -0700410 return vdc_uuid
411 else:
bayramovbd6160f2016-09-28 04:12:05 +0400412 raise vimconn.vimconnException("Failed create tenant {}".format(tenant_name))
bayramovef390722016-09-27 03:34:46 -0700413
bayramov163f1ae2016-09-28 17:16:55 +0400414 def delete_tenant(self, tenant_id=None):
kated47ad5f2017-08-03 02:16:13 -0700415 """ Delete a tenant from VIM
416 Args:
417 tenant_id is tenant_id to be deleted.
418
419 Return:
420 returns the tenant identifier in UUID format.
421 If action is failed method will throw exception
422 """
423 vca = self.connect_as_admin()
424 if not vca:
kasarc5bf2932018-03-09 04:15:22 -0800425 raise vimconn.vimconnConnectionException("Failed to connect vCD")
kated47ad5f2017-08-03 02:16:13 -0700426
427 if tenant_id is not None:
kasarc5bf2932018-03-09 04:15:22 -0800428 if vca._session:
kated47ad5f2017-08-03 02:16:13 -0700429 #Get OrgVDC
kasarc5bf2932018-03-09 04:15:22 -0800430 url_list = [self.url, '/api/vdc/', tenant_id]
kated47ad5f2017-08-03 02:16:13 -0700431 orgvdc_herf = ''.join(url_list)
kasarc5bf2932018-03-09 04:15:22 -0800432
433 headers = {'Accept':'application/*+xml;version=' + API_VERSION,
434 'x-vcloud-authorization': vca._session.headers['x-vcloud-authorization']}
435 response = self.perform_request(req_type='GET',
436 url=orgvdc_herf,
437 headers=headers)
kated47ad5f2017-08-03 02:16:13 -0700438
439 if response.status_code != requests.codes.ok:
440 self.logger.debug("delete_tenant():GET REST API call {} failed. "\
441 "Return status code {}".format(orgvdc_herf,
442 response.status_code))
443 raise vimconn.vimconnNotFoundException("Fail to get tenant {}".format(tenant_id))
444
445 lxmlroot_respond = lxmlElementTree.fromstring(response.content)
446 namespaces = {prefix:uri for prefix,uri in lxmlroot_respond.nsmap.iteritems() if prefix}
kasarc5bf2932018-03-09 04:15:22 -0800447 #For python3
448 #namespaces = {prefix:uri for prefix,uri in lxmlroot_respond.nsmap.items() if prefix}
kated47ad5f2017-08-03 02:16:13 -0700449 namespaces["xmlns"]= "http://www.vmware.com/vcloud/v1.5"
450 vdc_remove_href = lxmlroot_respond.find("xmlns:Link[@rel='remove']",namespaces).attrib['href']
451 vdc_remove_href = vdc_remove_href + '?recursive=true&force=true'
452
kasarc5bf2932018-03-09 04:15:22 -0800453 response = self.perform_request(req_type='DELETE',
454 url=vdc_remove_href,
455 headers=headers)
kated47ad5f2017-08-03 02:16:13 -0700456
457 if response.status_code == 202:
kasarc5bf2932018-03-09 04:15:22 -0800458 time.sleep(5)
459 return tenant_id
kated47ad5f2017-08-03 02:16:13 -0700460 else:
461 self.logger.debug("delete_tenant(): DELETE REST API call {} failed. "\
462 "Return status code {}".format(vdc_remove_href,
463 response.status_code))
464 raise vimconn.vimconnException("Fail to delete tenant with ID {}".format(tenant_id))
465 else:
466 self.logger.debug("delete_tenant():Incorrect tenant ID {}".format(tenant_id))
467 raise vimconn.vimconnNotFoundException("Fail to get tenant {}".format(tenant_id))
468
bayramov325fa1c2016-09-08 01:42:46 -0700469
470 def get_tenant_list(self, filter_dict={}):
bayramovb6ffe792016-09-28 11:50:56 +0400471 """Obtain tenants of VIM
bayramov325fa1c2016-09-08 01:42:46 -0700472 filter_dict can contain the following keys:
473 name: filter by tenant name
474 id: filter by tenant uuid/id
475 <other VIM specific>
bayramovb6ffe792016-09-28 11:50:56 +0400476 Returns the tenant list of dictionaries:
bayramov325fa1c2016-09-08 01:42:46 -0700477 [{'name':'<name>, 'id':'<id>, ...}, ...]
bayramov325fa1c2016-09-08 01:42:46 -0700478
bayramovb6ffe792016-09-28 11:50:56 +0400479 """
bayramovef390722016-09-27 03:34:46 -0700480 org_dict = self.get_org(self.org_uuid)
481 vdcs_dict = org_dict['vdcs']
482
483 vdclist = []
484 try:
485 for k in vdcs_dict:
486 entry = {'name': vdcs_dict[k], 'id': k}
bayramovb6ffe792016-09-28 11:50:56 +0400487 # if caller didn't specify dictionary we return all tenants.
488 if filter_dict is not None and filter_dict:
489 filtered_entry = entry.copy()
490 filtered_dict = set(entry.keys()) - set(filter_dict)
491 for unwanted_key in filtered_dict: del entry[unwanted_key]
492 if filter_dict == entry:
493 vdclist.append(filtered_entry)
494 else:
495 vdclist.append(entry)
bayramovef390722016-09-27 03:34:46 -0700496 except:
497 self.logger.debug("Error in get_tenant_list()")
498 self.logger.debug(traceback.format_exc())
bayramovb6ffe792016-09-28 11:50:56 +0400499 raise vimconn.vimconnException("Incorrect state. {}")
bayramovef390722016-09-27 03:34:46 -0700500
501 return vdclist
502
503 def new_network(self, net_name, net_type, ip_profile=None, shared=False):
bayramovb6ffe792016-09-28 11:50:56 +0400504 """Adds a tenant network to VIM
bayramov325fa1c2016-09-08 01:42:46 -0700505 net_name is the name
bhangare0e571a92017-01-12 04:02:23 -0800506 net_type can be 'bridge','data'.'ptp'.
bayramovb6ffe792016-09-28 11:50:56 +0400507 ip_profile is a dict containing the IP parameters of the network
bayramov325fa1c2016-09-08 01:42:46 -0700508 shared is a boolean
bayramovb6ffe792016-09-28 11:50:56 +0400509 Returns the network identifier"""
bayramov325fa1c2016-09-08 01:42:46 -0700510
bhangare0e571a92017-01-12 04:02:23 -0800511 self.logger.debug("new_network tenant {} net_type {} ip_profile {} shared {}"
512 .format(net_name, net_type, ip_profile, shared))
bayramov325fa1c2016-09-08 01:42:46 -0700513
bayramovef390722016-09-27 03:34:46 -0700514 isshared = 'false'
515 if shared:
516 isshared = 'true'
517
kateac1e3792017-04-01 02:16:39 -0700518# ############# Stub code for SRIOV #################
519# if net_type == "data" or net_type == "ptp":
520# if self.config.get('dv_switch_name') == None:
521# raise vimconn.vimconnConflictException("You must provide 'dv_switch_name' at config value")
522# network_uuid = self.create_dvPort_group(net_name)
523
bhangare0e571a92017-01-12 04:02:23 -0800524 network_uuid = self.create_network(network_name=net_name, net_type=net_type,
525 ip_profile=ip_profile, isshared=isshared)
bayramovef390722016-09-27 03:34:46 -0700526 if network_uuid is not None:
527 return network_uuid
528 else:
bayramovbd6160f2016-09-28 04:12:05 +0400529 raise vimconn.vimconnUnexpectedResponse("Failed create a new network {}".format(net_name))
bayramovef390722016-09-27 03:34:46 -0700530
531 def get_vcd_network_list(self):
532 """ Method available organization for a logged in tenant
533
534 Returns:
535 The return vca object that letter can be used to connect to vcloud direct as admin
536 """
537
kate15f1c382016-12-15 01:12:40 -0800538 self.logger.debug("get_vcd_network_list(): retrieving network list for vcd {}".format(self.tenant_name))
bayramovef390722016-09-27 03:34:46 -0700539
kate15f1c382016-12-15 01:12:40 -0800540 if not self.tenant_name:
541 raise vimconn.vimconnConnectionException("Tenant name is empty.")
542
kasarc5bf2932018-03-09 04:15:22 -0800543 org, vdc = self.get_vdc_details()
kate15f1c382016-12-15 01:12:40 -0800544 if vdc is None:
545 raise vimconn.vimconnConnectionException("Can't retrieve information for a VDC {}".format(self.tenant_name))
546
kasarc5bf2932018-03-09 04:15:22 -0800547 vdc_uuid = vdc.get('id').split(":")[3]
548 if self.client._session:
549 headers = {'Accept':'application/*+xml;version=' + API_VERSION,
550 'x-vcloud-authorization': self.client._session.headers['x-vcloud-authorization']}
551 response = self.perform_request(req_type='GET',
552 url=vdc.get('href'),
553 headers=headers)
554 if response.status_code != 200:
555 self.logger.error("Failed to get vdc content")
556 raise vimconn.vimconnNotFoundException("Failed to get vdc content")
557 else:
558 content = XmlElementTree.fromstring(response.content)
sbhangarea8e5b782018-06-21 02:10:03 -0700559
bayramovef390722016-09-27 03:34:46 -0700560 network_list = []
561 try:
kasarc5bf2932018-03-09 04:15:22 -0800562 for item in content:
563 if item.tag.split('}')[-1] == 'AvailableNetworks':
564 for net in item:
565 response = self.perform_request(req_type='GET',
566 url=net.get('href'),
567 headers=headers)
bayramovef390722016-09-27 03:34:46 -0700568
kasarc5bf2932018-03-09 04:15:22 -0800569 if response.status_code != 200:
570 self.logger.error("Failed to get network content")
571 raise vimconn.vimconnNotFoundException("Failed to get network content")
572 else:
573 net_details = XmlElementTree.fromstring(response.content)
574
575 filter_dict = {}
576 net_uuid = net_details.get('id').split(":")
577 if len(net_uuid) != 4:
578 continue
579 else:
580 net_uuid = net_uuid[3]
581 # create dict entry
Ravi Chamarty2fa47b42018-10-22 23:59:10 +0000582 self.logger.debug("get_vcd_network_list(): Adding network {} "
583 "to a list vcd id {} network {}".format(net_uuid,
584 vdc_uuid,
585 net_details.get('name')))
kasarc5bf2932018-03-09 04:15:22 -0800586 filter_dict["name"] = net_details.get('name')
587 filter_dict["id"] = net_uuid
588 if [i.text for i in net_details if i.tag.split('}')[-1] == 'IsShared'][0] == 'true':
589 shared = True
590 else:
591 shared = False
592 filter_dict["shared"] = shared
593 filter_dict["tenant_id"] = vdc_uuid
kasar40d97802018-05-02 05:58:07 -0700594 if int(net_details.get('status')) == 1:
kasarc5bf2932018-03-09 04:15:22 -0800595 filter_dict["admin_state_up"] = True
596 else:
597 filter_dict["admin_state_up"] = False
598 filter_dict["status"] = "ACTIVE"
599 filter_dict["type"] = "bridge"
600 network_list.append(filter_dict)
601 self.logger.debug("get_vcd_network_list adding entry {}".format(filter_dict))
bayramovef390722016-09-27 03:34:46 -0700602 except:
kasarc5bf2932018-03-09 04:15:22 -0800603 self.logger.debug("Error in get_vcd_network_list", exc_info=True)
bayramovef390722016-09-27 03:34:46 -0700604 pass
605
606 self.logger.debug("get_vcd_network_list returning {}".format(network_list))
607 return network_list
bayramov325fa1c2016-09-08 01:42:46 -0700608
609 def get_network_list(self, filter_dict={}):
bayramovb6ffe792016-09-28 11:50:56 +0400610 """Obtain tenant networks of VIM
bayramov325fa1c2016-09-08 01:42:46 -0700611 Filter_dict can be:
bayramovef390722016-09-27 03:34:46 -0700612 name: network name OR/AND
613 id: network uuid OR/AND
614 shared: boolean OR/AND
615 tenant_id: tenant OR/AND
bayramov325fa1c2016-09-08 01:42:46 -0700616 admin_state_up: boolean
617 status: 'ACTIVE'
bayramovef390722016-09-27 03:34:46 -0700618
619 [{key : value , key : value}]
620
bayramov325fa1c2016-09-08 01:42:46 -0700621 Returns the network list of dictionaries:
622 [{<the fields at Filter_dict plus some VIM specific>}, ...]
623 List can be empty
bayramovb6ffe792016-09-28 11:50:56 +0400624 """
bayramov325fa1c2016-09-08 01:42:46 -0700625
bhangare1a0b97c2017-06-21 02:20:15 -0700626 self.logger.debug("get_network_list(): retrieving network list for vcd {}".format(self.tenant_name))
kate15f1c382016-12-15 01:12:40 -0800627
628 if not self.tenant_name:
629 raise vimconn.vimconnConnectionException("Tenant name is empty.")
bayramov325fa1c2016-09-08 01:42:46 -0700630
kasarc5bf2932018-03-09 04:15:22 -0800631 org, vdc = self.get_vdc_details()
kate15f1c382016-12-15 01:12:40 -0800632 if vdc is None:
633 raise vimconn.vimconnConnectionException("Can't retrieve information for a VDC {}.".format(self.tenant_name))
bayramov325fa1c2016-09-08 01:42:46 -0700634
bayramovef390722016-09-27 03:34:46 -0700635 try:
kasarc5bf2932018-03-09 04:15:22 -0800636 vdcid = vdc.get('id').split(":")[3]
637
638 if self.client._session:
639 headers = {'Accept':'application/*+xml;version=' + API_VERSION,
640 'x-vcloud-authorization': self.client._session.headers['x-vcloud-authorization']}
641 response = self.perform_request(req_type='GET',
642 url=vdc.get('href'),
643 headers=headers)
644 if response.status_code != 200:
645 self.logger.error("Failed to get vdc content")
646 raise vimconn.vimconnNotFoundException("Failed to get vdc content")
647 else:
648 content = XmlElementTree.fromstring(response.content)
649
bhangarebfdca492017-03-11 01:32:46 -0800650 network_list = []
kasarc5bf2932018-03-09 04:15:22 -0800651 for item in content:
652 if item.tag.split('}')[-1] == 'AvailableNetworks':
653 for net in item:
654 response = self.perform_request(req_type='GET',
655 url=net.get('href'),
656 headers=headers)
bhangarebfdca492017-03-11 01:32:46 -0800657
kasarc5bf2932018-03-09 04:15:22 -0800658 if response.status_code != 200:
659 self.logger.error("Failed to get network content")
660 raise vimconn.vimconnNotFoundException("Failed to get network content")
661 else:
662 net_details = XmlElementTree.fromstring(response.content)
bayramovef390722016-09-27 03:34:46 -0700663
kasarc5bf2932018-03-09 04:15:22 -0800664 filter_entry = {}
665 net_uuid = net_details.get('id').split(":")
666 if len(net_uuid) != 4:
667 continue
668 else:
sbhangarea8e5b782018-06-21 02:10:03 -0700669 net_uuid = net_uuid[3]
kasarc5bf2932018-03-09 04:15:22 -0800670 # create dict entry
Ravi Chamarty2fa47b42018-10-22 23:59:10 +0000671 self.logger.debug("get_network_list(): Adding net {}"
672 " to a list vcd id {} network {}".format(net_uuid,
673 vdcid,
674 net_details.get('name')))
kasarc5bf2932018-03-09 04:15:22 -0800675 filter_entry["name"] = net_details.get('name')
676 filter_entry["id"] = net_uuid
677 if [i.text for i in net_details if i.tag.split('}')[-1] == 'IsShared'][0] == 'true':
678 shared = True
679 else:
680 shared = False
681 filter_entry["shared"] = shared
682 filter_entry["tenant_id"] = vdcid
kasar40d97802018-05-02 05:58:07 -0700683 if int(net_details.get('status')) == 1:
kasarc5bf2932018-03-09 04:15:22 -0800684 filter_entry["admin_state_up"] = True
685 else:
686 filter_entry["admin_state_up"] = False
687 filter_entry["status"] = "ACTIVE"
688 filter_entry["type"] = "bridge"
689 filtered_entry = filter_entry.copy()
690
691 if filter_dict is not None and filter_dict:
692 # we remove all the key : value we don't care and match only
693 # respected field
694 filtered_dict = set(filter_entry.keys()) - set(filter_dict)
695 for unwanted_key in filtered_dict: del filter_entry[unwanted_key]
696 if filter_dict == filter_entry:
697 network_list.append(filtered_entry)
698 else:
699 network_list.append(filtered_entry)
700 except Exception as e:
701 self.logger.debug("Error in get_network_list",exc_info=True)
702 if isinstance(e, vimconn.vimconnException):
703 raise
704 else:
705 raise vimconn.vimconnNotFoundException("Failed : Networks list not found {} ".format(e))
bayramov325fa1c2016-09-08 01:42:46 -0700706
707 self.logger.debug("Returning {}".format(network_list))
708 return network_list
709
710 def get_network(self, net_id):
bayramovfe3f3c92016-10-04 07:53:41 +0400711 """Method obtains network details of net_id VIM network
bayramovef390722016-09-27 03:34:46 -0700712 Return a dict with the fields at filter_dict (see get_network_list) plus some VIM specific>}, ...]"""
713
bayramovef390722016-09-27 03:34:46 -0700714 try:
kasarc5bf2932018-03-09 04:15:22 -0800715 org, vdc = self.get_vdc_details()
716 vdc_id = vdc.get('id').split(":")[3]
717 if self.client._session:
718 headers = {'Accept':'application/*+xml;version=' + API_VERSION,
719 'x-vcloud-authorization': self.client._session.headers['x-vcloud-authorization']}
720 response = self.perform_request(req_type='GET',
721 url=vdc.get('href'),
722 headers=headers)
723 if response.status_code != 200:
724 self.logger.error("Failed to get vdc content")
725 raise vimconn.vimconnNotFoundException("Failed to get vdc content")
726 else:
727 content = XmlElementTree.fromstring(response.content)
bhangarebfdca492017-03-11 01:32:46 -0800728
bhangarebfdca492017-03-11 01:32:46 -0800729 filter_dict = {}
730
kasarc5bf2932018-03-09 04:15:22 -0800731 for item in content:
732 if item.tag.split('}')[-1] == 'AvailableNetworks':
733 for net in item:
734 response = self.perform_request(req_type='GET',
735 url=net.get('href'),
736 headers=headers)
kasarc30a04e2017-08-24 05:58:18 -0700737
kasarc5bf2932018-03-09 04:15:22 -0800738 if response.status_code != 200:
739 self.logger.error("Failed to get network content")
740 raise vimconn.vimconnNotFoundException("Failed to get network content")
741 else:
742 net_details = XmlElementTree.fromstring(response.content)
743
744 vdc_network_id = net_details.get('id').split(":")
745 if len(vdc_network_id) == 4 and vdc_network_id[3] == net_id:
746 filter_dict["name"] = net_details.get('name')
747 filter_dict["id"] = vdc_network_id[3]
748 if [i.text for i in net_details if i.tag.split('}')[-1] == 'IsShared'][0] == 'true':
749 shared = True
750 else:
751 shared = False
752 filter_dict["shared"] = shared
753 filter_dict["tenant_id"] = vdc_id
kasar40d97802018-05-02 05:58:07 -0700754 if int(net_details.get('status')) == 1:
kasarc5bf2932018-03-09 04:15:22 -0800755 filter_dict["admin_state_up"] = True
756 else:
757 filter_dict["admin_state_up"] = False
758 filter_dict["status"] = "ACTIVE"
759 filter_dict["type"] = "bridge"
760 self.logger.debug("Returning {}".format(filter_dict))
761 return filter_dict
bayramovef390722016-09-27 03:34:46 -0700762 else:
kasarc5bf2932018-03-09 04:15:22 -0800763 raise vimconn.vimconnNotFoundException("Network {} not found".format(net_id))
kasarc30a04e2017-08-24 05:58:18 -0700764 except Exception as e:
bayramovef390722016-09-27 03:34:46 -0700765 self.logger.debug("Error in get_network")
766 self.logger.debug(traceback.format_exc())
kasarc30a04e2017-08-24 05:58:18 -0700767 if isinstance(e, vimconn.vimconnException):
768 raise
769 else:
770 raise vimconn.vimconnNotFoundException("Failed : Network not found {} ".format(e))
bayramovef390722016-09-27 03:34:46 -0700771
772 return filter_dict
bayramov325fa1c2016-09-08 01:42:46 -0700773
774 def delete_network(self, net_id):
bayramovef390722016-09-27 03:34:46 -0700775 """
776 Method Deletes a tenant network from VIM, provide the network id.
777
778 Returns the network identifier or raise an exception
779 """
780
kateac1e3792017-04-01 02:16:39 -0700781 # ############# Stub code for SRIOV #################
782# dvport_group = self.get_dvport_group(net_id)
783# if dvport_group:
784# #delete portgroup
785# status = self.destroy_dvport_group(net_id)
786# if status:
787# # Remove vlanID from persistent info
788# if net_id in self.persistent_info["used_vlanIDs"]:
789# del self.persistent_info["used_vlanIDs"][net_id]
790#
791# return net_id
792
bayramovfe3f3c92016-10-04 07:53:41 +0400793 vcd_network = self.get_vcd_network(network_uuid=net_id)
794 if vcd_network is not None and vcd_network:
795 if self.delete_network_action(network_uuid=net_id):
796 return net_id
bayramovef390722016-09-27 03:34:46 -0700797 else:
798 raise vimconn.vimconnNotFoundException("Network {} not found".format(net_id))
bayramov325fa1c2016-09-08 01:42:46 -0700799
800 def refresh_nets_status(self, net_list):
bayramovbd6160f2016-09-28 04:12:05 +0400801 """Get the status of the networks
bayramov325fa1c2016-09-08 01:42:46 -0700802 Params: the list of network identifiers
803 Returns a dictionary with:
804 net_id: #VIM id of this network
805 status: #Mandatory. Text with one of:
806 # DELETED (not found at vim)
bayramovbd6160f2016-09-28 04:12:05 +0400807 # VIM_ERROR (Cannot connect to VIM, VIM response error, ...)
bayramov325fa1c2016-09-08 01:42:46 -0700808 # OTHER (Vim reported other status not understood)
809 # ERROR (VIM indicates an ERROR status)
bayramovbd6160f2016-09-28 04:12:05 +0400810 # ACTIVE, INACTIVE, DOWN (admin down),
bayramov325fa1c2016-09-08 01:42:46 -0700811 # BUILD (on building process)
812 #
bayramovbd6160f2016-09-28 04:12:05 +0400813 error_msg: #Text with VIM error message, if any. Or the VIM connection ERROR
bayramov325fa1c2016-09-08 01:42:46 -0700814 vim_info: #Text with plain information obtained from vim (yaml.safe_dump)
815
bayramovbd6160f2016-09-28 04:12:05 +0400816 """
bayramov325fa1c2016-09-08 01:42:46 -0700817
bayramovef390722016-09-27 03:34:46 -0700818 dict_entry = {}
819 try:
820 for net in net_list:
bayramovef390722016-09-27 03:34:46 -0700821 errormsg = ''
822 vcd_network = self.get_vcd_network(network_uuid=net)
bayramovfe3f3c92016-10-04 07:53:41 +0400823 if vcd_network is not None and vcd_network:
bhangare92d4af32016-12-24 02:54:51 -0800824 if vcd_network['status'] == '1':
bayramovef390722016-09-27 03:34:46 -0700825 status = 'ACTIVE'
826 else:
827 status = 'DOWN'
828 else:
829 status = 'DELETED'
bayramovfe3f3c92016-10-04 07:53:41 +0400830 errormsg = 'Network not found.'
831
832 dict_entry[net] = {'status': status, 'error_msg': errormsg,
bhangare92d4af32016-12-24 02:54:51 -0800833 'vim_info': yaml.safe_dump(vcd_network)}
bayramovef390722016-09-27 03:34:46 -0700834 except:
835 self.logger.debug("Error in refresh_nets_status")
836 self.logger.debug(traceback.format_exc())
837
838 return dict_entry
839
bayramovbd6160f2016-09-28 04:12:05 +0400840 def get_flavor(self, flavor_id):
bayramovef390722016-09-27 03:34:46 -0700841 """Obtain flavor details from the VIM
842 Returns the flavor dict details {'id':<>, 'name':<>, other vim specific } #TODO to concrete
843 """
kateeb044522017-03-06 23:54:39 -0800844 if flavor_id not in vimconnector.flavorlist:
bayramovfe3f3c92016-10-04 07:53:41 +0400845 raise vimconn.vimconnNotFoundException("Flavor not found.")
kateeb044522017-03-06 23:54:39 -0800846 return vimconnector.flavorlist[flavor_id]
bayramov325fa1c2016-09-08 01:42:46 -0700847
848 def new_flavor(self, flavor_data):
bayramovef390722016-09-27 03:34:46 -0700849 """Adds a tenant flavor to VIM
bayramov325fa1c2016-09-08 01:42:46 -0700850 flavor_data contains a dictionary with information, keys:
851 name: flavor name
852 ram: memory (cloud type) in MBytes
853 vpcus: cpus (cloud type)
854 extended: EPA parameters
855 - numas: #items requested in same NUMA
856 memory: number of 1G huge pages memory
857 paired-threads|cores|threads: number of paired hyperthreads, complete cores OR individual threads
858 interfaces: # passthrough(PT) or SRIOV interfaces attached to this numa
859 - name: interface name
860 dedicated: yes|no|yes:sriov; for PT, SRIOV or only one SRIOV for the physical NIC
861 bandwidth: X Gbps; requested guarantee bandwidth
bayramovef390722016-09-27 03:34:46 -0700862 vpci: requested virtual PCI address
bayramov325fa1c2016-09-08 01:42:46 -0700863 disk: disk size
864 is_public:
bayramov325fa1c2016-09-08 01:42:46 -0700865 #TODO to concrete
bayramovef390722016-09-27 03:34:46 -0700866 Returns the flavor identifier"""
bayramov325fa1c2016-09-08 01:42:46 -0700867
bayramovef390722016-09-27 03:34:46 -0700868 # generate a new uuid put to internal dict and return it.
bhangarea92ae392017-01-12 22:30:29 -0800869 self.logger.debug("Creating new flavor - flavor_data: {}".format(flavor_data))
870 new_flavor=flavor_data
871 ram = flavor_data.get(FLAVOR_RAM_KEY, 1024)
872 cpu = flavor_data.get(FLAVOR_VCPUS_KEY, 1)
garciadeblas79d1a1a2017-12-11 16:07:07 +0100873 disk = flavor_data.get(FLAVOR_DISK_KEY, 0)
bhangarea92ae392017-01-12 22:30:29 -0800874
kasarfeaaa052017-06-08 03:46:18 -0700875 if not isinstance(ram, int):
876 raise vimconn.vimconnException("Non-integer value for ram")
877 elif not isinstance(cpu, int):
878 raise vimconn.vimconnException("Non-integer value for cpu")
879 elif not isinstance(disk, int):
880 raise vimconn.vimconnException("Non-integer value for disk")
881
bhangarea92ae392017-01-12 22:30:29 -0800882 extended_flv = flavor_data.get("extended")
883 if extended_flv:
884 numas=extended_flv.get("numas")
885 if numas:
886 for numa in numas:
887 #overwrite ram and vcpus
sbhangarea8e5b782018-06-21 02:10:03 -0700888 if 'memory' in numa:
889 ram = numa['memory']*1024
bhangarea92ae392017-01-12 22:30:29 -0800890 if 'paired-threads' in numa:
891 cpu = numa['paired-threads']*2
892 elif 'cores' in numa:
893 cpu = numa['cores']
894 elif 'threads' in numa:
895 cpu = numa['threads']
896
897 new_flavor[FLAVOR_RAM_KEY] = ram
898 new_flavor[FLAVOR_VCPUS_KEY] = cpu
899 new_flavor[FLAVOR_DISK_KEY] = disk
900 # generate a new uuid put to internal dict and return it.
bayramovef390722016-09-27 03:34:46 -0700901 flavor_id = uuid.uuid4()
kateeb044522017-03-06 23:54:39 -0800902 vimconnector.flavorlist[str(flavor_id)] = new_flavor
bhangarea92ae392017-01-12 22:30:29 -0800903 self.logger.debug("Created flavor - {} : {}".format(flavor_id, new_flavor))
bayramov325fa1c2016-09-08 01:42:46 -0700904
bayramovef390722016-09-27 03:34:46 -0700905 return str(flavor_id)
bayramov325fa1c2016-09-08 01:42:46 -0700906
907 def delete_flavor(self, flavor_id):
bayramovef390722016-09-27 03:34:46 -0700908 """Deletes a tenant flavor from VIM identify by its id
bayramov325fa1c2016-09-08 01:42:46 -0700909
bayramovfe3f3c92016-10-04 07:53:41 +0400910 Returns the used id or raise an exception
bayramovef390722016-09-27 03:34:46 -0700911 """
kateeb044522017-03-06 23:54:39 -0800912 if flavor_id not in vimconnector.flavorlist:
bayramovfe3f3c92016-10-04 07:53:41 +0400913 raise vimconn.vimconnNotFoundException("Flavor not found.")
bayramovef390722016-09-27 03:34:46 -0700914
kateeb044522017-03-06 23:54:39 -0800915 vimconnector.flavorlist.pop(flavor_id, None)
bayramovef390722016-09-27 03:34:46 -0700916 return flavor_id
917
918 def new_image(self, image_dict):
bayramov5761ad12016-10-04 09:00:30 +0400919 """
bayramov325fa1c2016-09-08 01:42:46 -0700920 Adds a tenant image to VIM
921 Returns:
922 200, image-id if the image is created
923 <0, message if there is an error
bayramov5761ad12016-10-04 09:00:30 +0400924 """
bayramov325fa1c2016-09-08 01:42:46 -0700925
bayramovef390722016-09-27 03:34:46 -0700926 return self.get_image_id_from_path(image_dict['location'])
bayramov325fa1c2016-09-08 01:42:46 -0700927
928 def delete_image(self, image_id):
bayramovfe3f3c92016-10-04 07:53:41 +0400929 """
kated47ad5f2017-08-03 02:16:13 -0700930 Deletes a tenant image from VIM
931 Args:
932 image_id is ID of Image to be deleted
933 Return:
934 returns the image identifier in UUID format or raises an exception on error
bayramovfe3f3c92016-10-04 07:53:41 +0400935 """
kasarc5bf2932018-03-09 04:15:22 -0800936 conn = self.connect_as_admin()
937 if not conn:
938 raise vimconn.vimconnConnectionException("Failed to connect vCD")
kated47ad5f2017-08-03 02:16:13 -0700939 # Get Catalog details
kasarc5bf2932018-03-09 04:15:22 -0800940 url_list = [self.url, '/api/catalog/', image_id]
kated47ad5f2017-08-03 02:16:13 -0700941 catalog_herf = ''.join(url_list)
kasarc5bf2932018-03-09 04:15:22 -0800942
943 headers = {'Accept':'application/*+xml;version=' + API_VERSION,
944 'x-vcloud-authorization': conn._session.headers['x-vcloud-authorization']}
945
946 response = self.perform_request(req_type='GET',
947 url=catalog_herf,
sbhangarea8e5b782018-06-21 02:10:03 -0700948 headers=headers)
bayramovfe3f3c92016-10-04 07:53:41 +0400949
kated47ad5f2017-08-03 02:16:13 -0700950 if response.status_code != requests.codes.ok:
951 self.logger.debug("delete_image():GET REST API call {} failed. "\
952 "Return status code {}".format(catalog_herf,
953 response.status_code))
954 raise vimconn.vimconnNotFoundException("Fail to get image {}".format(image_id))
955
956 lxmlroot_respond = lxmlElementTree.fromstring(response.content)
957 namespaces = {prefix:uri for prefix,uri in lxmlroot_respond.nsmap.iteritems() if prefix}
kasarc5bf2932018-03-09 04:15:22 -0800958 #For python3
959 #namespaces = {prefix:uri for prefix,uri in lxmlroot_respond.nsmap.items() if prefix}
kated47ad5f2017-08-03 02:16:13 -0700960 namespaces["xmlns"]= "http://www.vmware.com/vcloud/v1.5"
961
962 catalogItems_section = lxmlroot_respond.find("xmlns:CatalogItems",namespaces)
963 catalogItems = catalogItems_section.iterfind("xmlns:CatalogItem",namespaces)
964 for catalogItem in catalogItems:
965 catalogItem_href = catalogItem.attrib['href']
966
kasarc5bf2932018-03-09 04:15:22 -0800967 response = self.perform_request(req_type='GET',
968 url=catalogItem_href,
969 headers=headers)
kated47ad5f2017-08-03 02:16:13 -0700970
971 if response.status_code != requests.codes.ok:
972 self.logger.debug("delete_image():GET REST API call {} failed. "\
973 "Return status code {}".format(catalog_herf,
974 response.status_code))
975 raise vimconn.vimconnNotFoundException("Fail to get catalogItem {} for catalog {}".format(
976 catalogItem,
977 image_id))
978
979 lxmlroot_respond = lxmlElementTree.fromstring(response.content)
980 namespaces = {prefix:uri for prefix,uri in lxmlroot_respond.nsmap.iteritems() if prefix}
kasarc5bf2932018-03-09 04:15:22 -0800981 #For python3
982 #namespaces = {prefix:uri for prefix,uri in lxmlroot_respond.nsmap.items() if prefix}
kated47ad5f2017-08-03 02:16:13 -0700983 namespaces["xmlns"]= "http://www.vmware.com/vcloud/v1.5"
984 catalogitem_remove_href = lxmlroot_respond.find("xmlns:Link[@rel='remove']",namespaces).attrib['href']
985
986 #Remove catalogItem
kasarc5bf2932018-03-09 04:15:22 -0800987 response = self.perform_request(req_type='DELETE',
988 url=catalogitem_remove_href,
sbhangarea8e5b782018-06-21 02:10:03 -0700989 headers=headers)
kated47ad5f2017-08-03 02:16:13 -0700990 if response.status_code == requests.codes.no_content:
991 self.logger.debug("Deleted Catalog item {}".format(catalogItem))
992 else:
993 raise vimconn.vimconnException("Fail to delete Catalog Item {}".format(catalogItem))
994
995 #Remove catalog
kasarc5bf2932018-03-09 04:15:22 -0800996 url_list = [self.url, '/api/admin/catalog/', image_id]
kated47ad5f2017-08-03 02:16:13 -0700997 catalog_remove_herf = ''.join(url_list)
kasarc5bf2932018-03-09 04:15:22 -0800998 response = self.perform_request(req_type='DELETE',
999 url=catalog_remove_herf,
1000 headers=headers)
kated47ad5f2017-08-03 02:16:13 -07001001
1002 if response.status_code == requests.codes.no_content:
1003 self.logger.debug("Deleted Catalog {}".format(image_id))
1004 return image_id
1005 else:
1006 raise vimconn.vimconnException("Fail to delete Catalog {}".format(image_id))
1007
bayramov325fa1c2016-09-08 01:42:46 -07001008
1009 def catalog_exists(self, catalog_name, catalogs):
bayramovfe3f3c92016-10-04 07:53:41 +04001010 """
1011
1012 :param catalog_name:
1013 :param catalogs:
1014 :return:
1015 """
bayramov325fa1c2016-09-08 01:42:46 -07001016 for catalog in catalogs:
kasarc5bf2932018-03-09 04:15:22 -08001017 if catalog['name'] == catalog_name:
bayramov325fa1c2016-09-08 01:42:46 -07001018 return True
1019 return False
1020
bayramovb6ffe792016-09-28 11:50:56 +04001021 def create_vimcatalog(self, vca=None, catalog_name=None):
bayramovfe3f3c92016-10-04 07:53:41 +04001022 """ Create new catalog entry in vCloud director.
bayramovb6ffe792016-09-28 11:50:56 +04001023
1024 Args
1025 vca: vCloud director.
1026 catalog_name catalog that client wish to create. Note no validation done for a name.
1027 Client must make sure that provide valid string representation.
1028
1029 Return (bool) True if catalog created.
1030
1031 """
1032 try:
kasarc5bf2932018-03-09 04:15:22 -08001033 result = vca.create_catalog(catalog_name, catalog_name)
1034 if result is not None:
sbhangarea8e5b782018-06-21 02:10:03 -07001035 return True
kasarc5bf2932018-03-09 04:15:22 -08001036 catalogs = vca.list_catalogs()
bayramovb6ffe792016-09-28 11:50:56 +04001037 except:
bayramov325fa1c2016-09-08 01:42:46 -07001038 return False
bayramov325fa1c2016-09-08 01:42:46 -07001039 return self.catalog_exists(catalog_name, catalogs)
1040
bayramov5761ad12016-10-04 09:00:30 +04001041 # noinspection PyIncorrectDocstring
bayramovfe3f3c92016-10-04 07:53:41 +04001042 def upload_ovf(self, vca=None, catalog_name=None, image_name=None, media_file_name=None,
1043 description='', progress=False, chunk_bytes=128 * 1024):
bayramov325fa1c2016-09-08 01:42:46 -07001044 """
1045 Uploads a OVF file to a vCloud catalog
1046
bayramov5761ad12016-10-04 09:00:30 +04001047 :param chunk_bytes:
1048 :param progress:
1049 :param description:
1050 :param image_name:
1051 :param vca:
bayramov325fa1c2016-09-08 01:42:46 -07001052 :param catalog_name: (str): The name of the catalog to upload the media.
bayramov325fa1c2016-09-08 01:42:46 -07001053 :param media_file_name: (str): The name of the local media file to upload.
1054 :return: (bool) True if the media file was successfully uploaded, false otherwise.
1055 """
1056 os.path.isfile(media_file_name)
1057 statinfo = os.stat(media_file_name)
bayramov325fa1c2016-09-08 01:42:46 -07001058
1059 # find a catalog entry where we upload OVF.
1060 # create vApp Template and check the status if vCD able to read OVF it will respond with appropirate
1061 # status change.
1062 # if VCD can parse OVF we upload VMDK file
bhangarebfdca492017-03-11 01:32:46 -08001063 try:
kasarc5bf2932018-03-09 04:15:22 -08001064 for catalog in vca.list_catalogs():
1065 if catalog_name != catalog['name']:
bhangarebfdca492017-03-11 01:32:46 -08001066 continue
kasarc5bf2932018-03-09 04:15:22 -08001067 catalog_href = "{}/api/catalog/{}/action/upload".format(self.url, catalog['id'])
bhangarebfdca492017-03-11 01:32:46 -08001068 data = """
kasarc5bf2932018-03-09 04:15:22 -08001069 <UploadVAppTemplateParams name="{}" xmlns="http://www.vmware.com/vcloud/v1.5" xmlns:ovf="http://schemas.dmtf.org/ovf/envelope/1"><Description>{} vApp Template</Description></UploadVAppTemplateParams>
1070 """.format(catalog_name, description)
1071
1072 if self.client:
1073 headers = {'Accept':'application/*+xml;version=' + API_VERSION,
1074 'x-vcloud-authorization': self.client._session.headers['x-vcloud-authorization']}
1075 headers['Content-Type'] = 'application/vnd.vmware.vcloud.uploadVAppTemplateParams+xml'
1076
1077 response = self.perform_request(req_type='POST',
1078 url=catalog_href,
1079 headers=headers,
1080 data=data)
1081
bhangarebfdca492017-03-11 01:32:46 -08001082 if response.status_code == requests.codes.created:
1083 catalogItem = XmlElementTree.fromstring(response.content)
1084 entity = [child for child in catalogItem if
1085 child.get("type") == "application/vnd.vmware.vcloud.vAppTemplate+xml"][0]
1086 href = entity.get('href')
1087 template = href
kasarc5bf2932018-03-09 04:15:22 -08001088
1089 response = self.perform_request(req_type='GET',
1090 url=href,
1091 headers=headers)
bhangarebfdca492017-03-11 01:32:46 -08001092
1093 if response.status_code == requests.codes.ok:
bhangarebfdca492017-03-11 01:32:46 -08001094 headers['Content-Type'] = 'Content-Type text/xml'
kasarc5bf2932018-03-09 04:15:22 -08001095 result = re.search('rel="upload:default"\shref="(.*?\/descriptor.ovf)"',response.content)
1096 if result:
1097 transfer_href = result.group(1)
1098
1099 response = self.perform_request(req_type='PUT',
1100 url=transfer_href,
1101 headers=headers,
1102 data=open(media_file_name, 'rb'))
bhangarebfdca492017-03-11 01:32:46 -08001103 if response.status_code != requests.codes.ok:
1104 self.logger.debug(
1105 "Failed create vApp template for catalog name {} and image {}".format(catalog_name,
1106 media_file_name))
1107 return False
1108
1109 # TODO fix this with aync block
1110 time.sleep(5)
1111
1112 self.logger.debug("vApp template for catalog name {} and image {}".format(catalog_name, media_file_name))
1113
1114 # uploading VMDK file
1115 # check status of OVF upload and upload remaining files.
kasarc5bf2932018-03-09 04:15:22 -08001116 response = self.perform_request(req_type='GET',
1117 url=template,
1118 headers=headers)
bhangarebfdca492017-03-11 01:32:46 -08001119
1120 if response.status_code == requests.codes.ok:
kasarc5bf2932018-03-09 04:15:22 -08001121 result = re.search('rel="upload:default"\s*href="(.*?vmdk)"',response.content)
1122 if result:
1123 link_href = result.group(1)
1124 # we skip ovf since it already uploaded.
1125 if 'ovf' in link_href:
1126 continue
1127 # The OVF file and VMDK must be in a same directory
1128 head, tail = os.path.split(media_file_name)
1129 file_vmdk = head + '/' + link_href.split("/")[-1]
1130 if not os.path.isfile(file_vmdk):
1131 return False
1132 statinfo = os.stat(file_vmdk)
1133 if statinfo.st_size == 0:
1134 return False
1135 hrefvmdk = link_href
1136
1137 if progress:
1138 widgets = ['Uploading file: ', Percentage(), ' ', Bar(), ' ', ETA(), ' ',
1139 FileTransferSpeed()]
1140 progress_bar = ProgressBar(widgets=widgets, maxval=statinfo.st_size).start()
1141
1142 bytes_transferred = 0
1143 f = open(file_vmdk, 'rb')
1144 while bytes_transferred < statinfo.st_size:
1145 my_bytes = f.read(chunk_bytes)
1146 if len(my_bytes) <= chunk_bytes:
1147 headers['Content-Range'] = 'bytes %s-%s/%s' % (
1148 bytes_transferred, len(my_bytes) - 1, statinfo.st_size)
1149 headers['Content-Length'] = str(len(my_bytes))
1150 response = requests.put(url=hrefvmdk,
1151 headers=headers,
1152 data=my_bytes,
1153 verify=False)
1154 if response.status_code == requests.codes.ok:
1155 bytes_transferred += len(my_bytes)
1156 if progress:
1157 progress_bar.update(bytes_transferred)
1158 else:
1159 self.logger.debug(
1160 'file upload failed with error: [%s] %s' % (response.status_code,
1161 response.content))
1162
1163 f.close()
bhangarebfdca492017-03-11 01:32:46 -08001164 return False
kasarc5bf2932018-03-09 04:15:22 -08001165 f.close()
1166 if progress:
1167 progress_bar.finish()
1168 time.sleep(10)
1169 return True
1170 else:
1171 self.logger.debug("Failed retrieve vApp template for catalog name {} for OVF {}".
1172 format(catalog_name, media_file_name))
1173 return False
bhangarebfdca492017-03-11 01:32:46 -08001174 except Exception as exp:
1175 self.logger.debug("Failed while uploading OVF to catalog {} for OVF file {} with Exception {}"
1176 .format(catalog_name,media_file_name, exp))
1177 raise vimconn.vimconnException(
1178 "Failed while uploading OVF to catalog {} for OVF file {} with Exception {}"
1179 .format(catalog_name,media_file_name, exp))
bayramov325fa1c2016-09-08 01:42:46 -07001180
1181 self.logger.debug("Failed retrieve catalog name {} for OVF file {}".format(catalog_name, media_file_name))
1182 return False
1183
bayramovfe3f3c92016-10-04 07:53:41 +04001184 def upload_vimimage(self, vca=None, catalog_name=None, media_name=None, medial_file_name=None, progress=False):
bayramov325fa1c2016-09-08 01:42:46 -07001185 """Upload media file"""
bayramovfe3f3c92016-10-04 07:53:41 +04001186 # TODO add named parameters for readability
1187
1188 return self.upload_ovf(vca=vca, catalog_name=catalog_name, image_name=media_name.split(".")[0],
1189 media_file_name=medial_file_name, description='medial_file_name', progress=progress)
bayramov325fa1c2016-09-08 01:42:46 -07001190
bayramovb6ffe792016-09-28 11:50:56 +04001191 def validate_uuid4(self, uuid_string=None):
1192 """ Method validate correct format of UUID.
1193
1194 Return: true if string represent valid uuid
1195 """
1196 try:
1197 val = uuid.UUID(uuid_string, version=4)
1198 except ValueError:
1199 return False
1200 return True
1201
1202 def get_catalogid(self, catalog_name=None, catalogs=None):
1203 """ Method check catalog and return catalog ID in UUID format.
1204
1205 Args
1206 catalog_name: catalog name as string
1207 catalogs: list of catalogs.
1208
1209 Return: catalogs uuid
1210 """
1211
bayramov325fa1c2016-09-08 01:42:46 -07001212 for catalog in catalogs:
kasarc5bf2932018-03-09 04:15:22 -08001213 if catalog['name'] == catalog_name:
1214 catalog_id = catalog['id']
1215 return catalog_id
bayramov325fa1c2016-09-08 01:42:46 -07001216 return None
1217
bayramovb6ffe792016-09-28 11:50:56 +04001218 def get_catalogbyid(self, catalog_uuid=None, catalogs=None):
1219 """ Method check catalog and return catalog name lookup done by catalog UUID.
1220
1221 Args
1222 catalog_name: catalog name as string
1223 catalogs: list of catalogs.
1224
1225 Return: catalogs name or None
1226 """
1227
1228 if not self.validate_uuid4(uuid_string=catalog_uuid):
1229 return None
1230
bayramov325fa1c2016-09-08 01:42:46 -07001231 for catalog in catalogs:
kasarc5bf2932018-03-09 04:15:22 -08001232 catalog_id = catalog.get('id')
bayramovb6ffe792016-09-28 11:50:56 +04001233 if catalog_id == catalog_uuid:
kasarc5bf2932018-03-09 04:15:22 -08001234 return catalog.get('name')
bayramov325fa1c2016-09-08 01:42:46 -07001235 return None
1236
bhangare06312472017-03-30 05:49:07 -07001237 def get_catalog_obj(self, catalog_uuid=None, catalogs=None):
1238 """ Method check catalog and return catalog name lookup done by catalog UUID.
1239
1240 Args
1241 catalog_name: catalog name as string
1242 catalogs: list of catalogs.
1243
1244 Return: catalogs name or None
1245 """
1246
1247 if not self.validate_uuid4(uuid_string=catalog_uuid):
1248 return None
1249
1250 for catalog in catalogs:
kasarc5bf2932018-03-09 04:15:22 -08001251 catalog_id = catalog.get('id')
bhangare06312472017-03-30 05:49:07 -07001252 if catalog_id == catalog_uuid:
1253 return catalog
1254 return None
1255
bayramovfe3f3c92016-10-04 07:53:41 +04001256 def get_image_id_from_path(self, path=None, progress=False):
bayramovb6ffe792016-09-28 11:50:56 +04001257 """ Method upload OVF image to vCloud director.
bayramov325fa1c2016-09-08 01:42:46 -07001258
bayramovb6ffe792016-09-28 11:50:56 +04001259 Each OVF image represented as single catalog entry in vcloud director.
1260 The method check for existing catalog entry. The check done by file name without file extension.
1261
1262 if given catalog name already present method will respond with existing catalog uuid otherwise
1263 it will create new catalog entry and upload OVF file to newly created catalog.
1264
1265 If method can't create catalog entry or upload a file it will throw exception.
1266
bayramovfe3f3c92016-10-04 07:53:41 +04001267 Method accept boolean flag progress that will output progress bar. It useful method
1268 for standalone upload use case. In case to test large file upload.
1269
bayramovb6ffe792016-09-28 11:50:56 +04001270 Args
bayramovfe3f3c92016-10-04 07:53:41 +04001271 path: - valid path to OVF file.
1272 progress - boolean progress bar show progress bar.
bayramovb6ffe792016-09-28 11:50:56 +04001273
1274 Return: if image uploaded correct method will provide image catalog UUID.
1275 """
bayramov325fa1c2016-09-08 01:42:46 -07001276
kate15f1c382016-12-15 01:12:40 -08001277 if not path:
bayramovfe3f3c92016-10-04 07:53:41 +04001278 raise vimconn.vimconnException("Image path can't be None.")
1279
1280 if not os.path.isfile(path):
1281 raise vimconn.vimconnException("Can't read file. File not found.")
1282
1283 if not os.access(path, os.R_OK):
1284 raise vimconn.vimconnException("Can't read file. Check file permission to read.")
1285
1286 self.logger.debug("get_image_id_from_path() client requesting {} ".format(path))
bayramov325fa1c2016-09-08 01:42:46 -07001287
1288 dirpath, filename = os.path.split(path)
1289 flname, file_extension = os.path.splitext(path)
1290 if file_extension != '.ovf':
bayramovfe3f3c92016-10-04 07:53:41 +04001291 self.logger.debug("Wrong file extension {} connector support only OVF container.".format(file_extension))
bayramovb6ffe792016-09-28 11:50:56 +04001292 raise vimconn.vimconnException("Wrong container. vCloud director supports only OVF.")
kate15f1c382016-12-15 01:12:40 -08001293
bayramov325fa1c2016-09-08 01:42:46 -07001294 catalog_name = os.path.splitext(filename)[0]
kate15f1c382016-12-15 01:12:40 -08001295 catalog_md5_name = hashlib.md5(path).hexdigest()
1296 self.logger.debug("File name {} Catalog Name {} file path {} "
1297 "vdc catalog name {}".format(filename, catalog_name, path, catalog_md5_name))
bayramov325fa1c2016-09-08 01:42:46 -07001298
bhangarebfdca492017-03-11 01:32:46 -08001299 try:
kasarc5bf2932018-03-09 04:15:22 -08001300 org,vdc = self.get_vdc_details()
1301 catalogs = org.list_catalogs()
bhangarebfdca492017-03-11 01:32:46 -08001302 except Exception as exp:
1303 self.logger.debug("Failed get catalogs() with Exception {} ".format(exp))
1304 raise vimconn.vimconnException("Failed get catalogs() with Exception {} ".format(exp))
1305
bayramov325fa1c2016-09-08 01:42:46 -07001306 if len(catalogs) == 0:
bayramovfe3f3c92016-10-04 07:53:41 +04001307 self.logger.info("Creating a new catalog entry {} in vcloud director".format(catalog_name))
kasarc5bf2932018-03-09 04:15:22 -08001308 result = self.create_vimcatalog(org, catalog_md5_name)
bayramov325fa1c2016-09-08 01:42:46 -07001309 if not result:
kate15f1c382016-12-15 01:12:40 -08001310 raise vimconn.vimconnException("Failed create new catalog {} ".format(catalog_md5_name))
kasarc5bf2932018-03-09 04:15:22 -08001311
1312 result = self.upload_vimimage(vca=org, catalog_name=catalog_md5_name,
bayramovfe3f3c92016-10-04 07:53:41 +04001313 media_name=filename, medial_file_name=path, progress=progress)
bayramov325fa1c2016-09-08 01:42:46 -07001314 if not result:
bayramovb6ffe792016-09-28 11:50:56 +04001315 raise vimconn.vimconnException("Failed create vApp template for catalog {} ".format(catalog_name))
kasarc5bf2932018-03-09 04:15:22 -08001316 return self.get_catalogid(catalog_name, catalogs)
bayramov325fa1c2016-09-08 01:42:46 -07001317 else:
1318 for catalog in catalogs:
1319 # search for existing catalog if we find same name we return ID
1320 # TODO optimize this
kasarc5bf2932018-03-09 04:15:22 -08001321 if catalog['name'] == catalog_md5_name:
kate15f1c382016-12-15 01:12:40 -08001322 self.logger.debug("Found existing catalog entry for {} "
1323 "catalog id {}".format(catalog_name,
1324 self.get_catalogid(catalog_md5_name, catalogs)))
kasarc5bf2932018-03-09 04:15:22 -08001325 return self.get_catalogid(catalog_md5_name, catalogs)
bayramov325fa1c2016-09-08 01:42:46 -07001326
bayramovfe3f3c92016-10-04 07:53:41 +04001327 # if we didn't find existing catalog we create a new one and upload image.
kate15f1c382016-12-15 01:12:40 -08001328 self.logger.debug("Creating new catalog entry {} - {}".format(catalog_name, catalog_md5_name))
kasarc5bf2932018-03-09 04:15:22 -08001329 result = self.create_vimcatalog(org, catalog_md5_name)
bayramov325fa1c2016-09-08 01:42:46 -07001330 if not result:
kate15f1c382016-12-15 01:12:40 -08001331 raise vimconn.vimconnException("Failed create new catalog {} ".format(catalog_md5_name))
bayramovfe3f3c92016-10-04 07:53:41 +04001332
kasarc5bf2932018-03-09 04:15:22 -08001333 result = self.upload_vimimage(vca=org, catalog_name=catalog_md5_name,
bayramovfe3f3c92016-10-04 07:53:41 +04001334 media_name=filename, medial_file_name=path, progress=progress)
bayramov325fa1c2016-09-08 01:42:46 -07001335 if not result:
kate15f1c382016-12-15 01:12:40 -08001336 raise vimconn.vimconnException("Failed create vApp template for catalog {} ".format(catalog_md5_name))
bayramov325fa1c2016-09-08 01:42:46 -07001337
kasarc5bf2932018-03-09 04:15:22 -08001338 return self.get_catalogid(catalog_md5_name, org.list_catalogs())
bayramov325fa1c2016-09-08 01:42:46 -07001339
kate8fc61fc2017-01-23 19:57:06 -08001340 def get_image_list(self, filter_dict={}):
1341 '''Obtain tenant images from VIM
1342 Filter_dict can be:
1343 name: image name
1344 id: image uuid
1345 checksum: image checksum
1346 location: image path
1347 Returns the image list of dictionaries:
1348 [{<the fields at Filter_dict plus some VIM specific>}, ...]
1349 List can be empty
1350 '''
bhangare1a0b97c2017-06-21 02:20:15 -07001351
kate8fc61fc2017-01-23 19:57:06 -08001352 try:
kasarc5bf2932018-03-09 04:15:22 -08001353 org, vdc = self.get_vdc_details()
kate8fc61fc2017-01-23 19:57:06 -08001354 image_list = []
kasarc5bf2932018-03-09 04:15:22 -08001355 catalogs = org.list_catalogs()
kate8fc61fc2017-01-23 19:57:06 -08001356 if len(catalogs) == 0:
1357 return image_list
1358 else:
1359 for catalog in catalogs:
kasarc5bf2932018-03-09 04:15:22 -08001360 catalog_uuid = catalog.get('id')
1361 name = catalog.get('name')
kate8fc61fc2017-01-23 19:57:06 -08001362 filtered_dict = {}
kate34718682017-01-24 03:20:43 -08001363 if filter_dict.get("name") and filter_dict["name"] != name:
1364 continue
1365 if filter_dict.get("id") and filter_dict["id"] != catalog_uuid:
1366 continue
1367 filtered_dict ["name"] = name
1368 filtered_dict ["id"] = catalog_uuid
1369 image_list.append(filtered_dict)
kate8fc61fc2017-01-23 19:57:06 -08001370
1371 self.logger.debug("List of already created catalog items: {}".format(image_list))
1372 return image_list
1373 except Exception as exp:
kated63062f2017-01-24 07:26:52 -08001374 raise vimconn.vimconnException("Exception occured while retriving catalog items {}".format(exp))
kate8fc61fc2017-01-23 19:57:06 -08001375
bayramovef390722016-09-27 03:34:46 -07001376 def get_vappid(self, vdc=None, vapp_name=None):
1377 """ Method takes vdc object and vApp name and returns vapp uuid or None
1378
1379 Args:
bayramovef390722016-09-27 03:34:46 -07001380 vdc: The VDC object.
1381 vapp_name: is application vappp name identifier
1382
bayramovb6ffe792016-09-28 11:50:56 +04001383 Returns:
bayramovef390722016-09-27 03:34:46 -07001384 The return vApp name otherwise None
1385 """
bayramovef390722016-09-27 03:34:46 -07001386 if vdc is None or vapp_name is None:
1387 return None
1388 # UUID has following format https://host/api/vApp/vapp-30da58a3-e7c7-4d09-8f68-d4c8201169cf
bayramov325fa1c2016-09-08 01:42:46 -07001389 try:
1390 refs = filter(lambda ref: ref.name == vapp_name and ref.type_ == 'application/vnd.vmware.vcloud.vApp+xml',
bayramovef390722016-09-27 03:34:46 -07001391 vdc.ResourceEntities.ResourceEntity)
kasarc5bf2932018-03-09 04:15:22 -08001392 #For python3
1393 #refs = [ref for ref in vdc.ResourceEntities.ResourceEntity\
1394 # if ref.name == vapp_name and ref.type_ == 'application/vnd.vmware.vcloud.vApp+xml']
bayramov325fa1c2016-09-08 01:42:46 -07001395 if len(refs) == 1:
1396 return refs[0].href.split("vapp")[1][1:]
bayramovef390722016-09-27 03:34:46 -07001397 except Exception as e:
1398 self.logger.exception(e)
1399 return False
1400 return None
1401
bayramovfe3f3c92016-10-04 07:53:41 +04001402 def check_vapp(self, vdc=None, vapp_uuid=None):
1403 """ Method Method returns True or False if vapp deployed in vCloud director
bayramovef390722016-09-27 03:34:46 -07001404
1405 Args:
1406 vca: Connector to VCA
1407 vdc: The VDC object.
1408 vappid: vappid is application identifier
1409
1410 Returns:
bayramovfe3f3c92016-10-04 07:53:41 +04001411 The return True if vApp deployed
bayramov5761ad12016-10-04 09:00:30 +04001412 :param vdc:
1413 :param vapp_uuid:
bayramovef390722016-09-27 03:34:46 -07001414 """
1415 try:
1416 refs = filter(lambda ref:
1417 ref.type_ == 'application/vnd.vmware.vcloud.vApp+xml',
1418 vdc.ResourceEntities.ResourceEntity)
kasarc5bf2932018-03-09 04:15:22 -08001419 #For python3
1420 #refs = [ref for ref in vdc.ResourceEntities.ResourceEntity\
1421 # if ref.type_ == 'application/vnd.vmware.vcloud.vApp+xml']
bayramovef390722016-09-27 03:34:46 -07001422 for ref in refs:
1423 vappid = ref.href.split("vapp")[1][1:]
1424 # find vapp with respected vapp uuid
bayramovfe3f3c92016-10-04 07:53:41 +04001425 if vappid == vapp_uuid:
bayramovef390722016-09-27 03:34:46 -07001426 return True
1427 except Exception as e:
1428 self.logger.exception(e)
1429 return False
1430 return False
1431
kasarc5bf2932018-03-09 04:15:22 -08001432 def get_namebyvappid(self, vapp_uuid=None):
bayramovef390722016-09-27 03:34:46 -07001433 """Method returns vApp name from vCD and lookup done by vapp_id.
1434
1435 Args:
bayramovfe3f3c92016-10-04 07:53:41 +04001436 vapp_uuid: vappid is application identifier
bayramovef390722016-09-27 03:34:46 -07001437
1438 Returns:
1439 The return vApp name otherwise None
1440 """
bayramovef390722016-09-27 03:34:46 -07001441 try:
kasarc5bf2932018-03-09 04:15:22 -08001442 if self.client and vapp_uuid:
1443 vapp_call = "{}/api/vApp/vapp-{}".format(self.url, vapp_uuid)
1444 headers = {'Accept':'application/*+xml;version=' + API_VERSION,
1445 'x-vcloud-authorization': self.client._session.headers['x-vcloud-authorization']}
bhangare1a0b97c2017-06-21 02:20:15 -07001446
kasarc5bf2932018-03-09 04:15:22 -08001447 response = self.perform_request(req_type='GET',
1448 url=vapp_call,
sbhangarea8e5b782018-06-21 02:10:03 -07001449 headers=headers)
kasarc5bf2932018-03-09 04:15:22 -08001450 #Retry login if session expired & retry sending request
1451 if response.status_code == 403:
1452 response = self.retry_rest('GET', vapp_call)
bhangare1a0b97c2017-06-21 02:20:15 -07001453
kasarc5bf2932018-03-09 04:15:22 -08001454 tree = XmlElementTree.fromstring(response.content)
1455 return tree.attrib['name']
bayramovef390722016-09-27 03:34:46 -07001456 except Exception as e:
1457 self.logger.exception(e)
bayramov325fa1c2016-09-08 01:42:46 -07001458 return None
1459 return None
1460
tierno19860412017-10-03 10:46:46 +02001461 def new_vminstance(self, name=None, description="", start=False, image_id=None, flavor_id=None, net_list=[],
tierno5a3273c2017-08-29 11:43:46 +02001462 cloud_config=None, disk_list=None, availability_zone_index=None, availability_zone_list=None):
bayramov325fa1c2016-09-08 01:42:46 -07001463 """Adds a VM instance to VIM
1464 Params:
tierno19860412017-10-03 10:46:46 +02001465 'start': (boolean) indicates if VM must start or created in pause mode.
1466 'image_id','flavor_id': image and flavor VIM id to use for the VM
1467 'net_list': list of interfaces, each one is a dictionary with:
1468 'name': (optional) name for the interface.
1469 'net_id': VIM network id where this interface must be connect to. Mandatory for type==virtual
1470 'vpci': (optional) virtual vPCI address to assign at the VM. Can be ignored depending on VIM capabilities
1471 'model': (optional and only have sense for type==virtual) interface model: virtio, e2000, ...
1472 'mac_address': (optional) mac address to assign to this interface
1473 #TODO: CHECK if an optional 'vlan' parameter is needed for VIMs when type if VF and net_id is not provided,
1474 the VLAN tag to be used. In case net_id is provided, the internal network vlan is used for tagging VF
1475 'type': (mandatory) can be one of:
1476 'virtual', in this case always connected to a network of type 'net_type=bridge'
tierno66eba6e2017-11-10 17:09:18 +01001477 'PCI-PASSTHROUGH' or 'PF' (passthrough): depending on VIM capabilities it can be connected to a data/ptp network ot it
tierno19860412017-10-03 10:46:46 +02001478 can created unconnected
tierno66eba6e2017-11-10 17:09:18 +01001479 'SR-IOV' or 'VF' (SRIOV with VLAN tag): same as PF for network connectivity.
tierno19860412017-10-03 10:46:46 +02001480 'VFnotShared'(SRIOV without VLAN tag) same as PF for network connectivity. VF where no other VFs
1481 are allocated on the same physical NIC
1482 'bw': (optional) only for PF/VF/VFnotShared. Minimal Bandwidth required for the interface in GBPS
1483 'port_security': (optional) If False it must avoid any traffic filtering at this interface. If missing
1484 or True, it must apply the default VIM behaviour
1485 After execution the method will add the key:
1486 'vim_id': must be filled/added by this method with the VIM identifier generated by the VIM for this
1487 interface. 'net_list' is modified
1488 'cloud_config': (optional) dictionary with:
1489 'key-pairs': (optional) list of strings with the public key to be inserted to the default user
1490 'users': (optional) list of users to be inserted, each item is a dict with:
1491 'name': (mandatory) user name,
1492 'key-pairs': (optional) list of strings with the public key to be inserted to the user
1493 'user-data': (optional) can be a string with the text script to be passed directly to cloud-init,
1494 or a list of strings, each one contains a script to be passed, usually with a MIMEmultipart file
1495 'config-files': (optional). List of files to be transferred. Each item is a dict with:
1496 'dest': (mandatory) string with the destination absolute path
1497 'encoding': (optional, by default text). Can be one of:
1498 'b64', 'base64', 'gz', 'gz+b64', 'gz+base64', 'gzip+b64', 'gzip+base64'
1499 'content' (mandatory): string with the content of the file
1500 'permissions': (optional) string with file permissions, typically octal notation '0644'
1501 'owner': (optional) file owner, string with the format 'owner:group'
1502 'boot-data-drive': boolean to indicate if user-data must be passed using a boot drive (hard disk)
1503 'disk_list': (optional) list with additional disks to the VM. Each item is a dict with:
1504 'image_id': (optional). VIM id of an existing image. If not provided an empty disk must be mounted
1505 'size': (mandatory) string with the size of the disk in GB
1506 availability_zone_index: Index of availability_zone_list to use for this this VM. None if not AV required
1507 availability_zone_list: list of availability zones given by user in the VNFD descriptor. Ignore if
1508 availability_zone_index is None
tierno98e909c2017-10-14 13:27:03 +02001509 Returns a tuple with the instance identifier and created_items or raises an exception on error
1510 created_items can be None or a dictionary where this method can include key-values that will be passed to
1511 the method delete_vminstance and action_vminstance. Can be used to store created ports, volumes, etc.
1512 Format is vimconnector dependent, but do not use nested dictionaries and a value of None should be the same
1513 as not present.
bayramov325fa1c2016-09-08 01:42:46 -07001514 """
kate15f1c382016-12-15 01:12:40 -08001515 self.logger.info("Creating new instance for entry {}".format(name))
sbhangarea8e5b782018-06-21 02:10:03 -07001516 self.logger.debug("desc {} boot {} image_id: {} flavor_id: {} net_list: {} cloud_config {} disk_list {} "\
1517 "availability_zone_index {} availability_zone_list {}"\
1518 .format(description, start, image_id, flavor_id, net_list, cloud_config, disk_list,\
1519 availability_zone_index, availability_zone_list))
bayramov325fa1c2016-09-08 01:42:46 -07001520
bayramov5761ad12016-10-04 09:00:30 +04001521 #new vm name = vmname + tenant_id + uuid
1522 new_vm_name = [name, '-', str(uuid.uuid4())]
kate15f1c382016-12-15 01:12:40 -08001523 vmname_andid = ''.join(new_vm_name)
bayramov5761ad12016-10-04 09:00:30 +04001524
kasarc5bf2932018-03-09 04:15:22 -08001525 for net in net_list:
1526 if net['type'] == "SR-IOV" or net['type'] == "PCI-PASSTHROUGH":
1527 raise vimconn.vimconnNotSupportedException(
1528 "Current vCD version does not support type : {}".format(net['type']))
bayramov325fa1c2016-09-08 01:42:46 -07001529
kasarc5bf2932018-03-09 04:15:22 -08001530 if len(net_list) > 10:
1531 raise vimconn.vimconnNotSupportedException(
1532 "The VM hardware versions 7 and above support upto 10 NICs only")
1533
1534 # if vm already deployed we return existing uuid
bayramovef390722016-09-27 03:34:46 -07001535 # we check for presence of VDC, Catalog entry and Flavor.
kasarc5bf2932018-03-09 04:15:22 -08001536 org, vdc = self.get_vdc_details()
bayramovef390722016-09-27 03:34:46 -07001537 if vdc is None:
bayramovfe3f3c92016-10-04 07:53:41 +04001538 raise vimconn.vimconnNotFoundException(
bayramovb6ffe792016-09-28 11:50:56 +04001539 "new_vminstance(): Failed create vApp {}: (Failed retrieve VDC information)".format(name))
kasarc5bf2932018-03-09 04:15:22 -08001540 catalogs = org.list_catalogs()
bhangare1a0b97c2017-06-21 02:20:15 -07001541 if catalogs is None:
1542 #Retry once, if failed by refreshing token
1543 self.get_token()
kasarc5bf2932018-03-09 04:15:22 -08001544 org = Org(self.client, resource=self.client.get_org())
1545 catalogs = org.list_catalogs()
bayramovef390722016-09-27 03:34:46 -07001546 if catalogs is None:
bayramovfe3f3c92016-10-04 07:53:41 +04001547 raise vimconn.vimconnNotFoundException(
kate15f1c382016-12-15 01:12:40 -08001548 "new_vminstance(): Failed create vApp {}: (Failed retrieve catalogs list)".format(name))
bayramovbd6160f2016-09-28 04:12:05 +04001549
kate15f1c382016-12-15 01:12:40 -08001550 catalog_hash_name = self.get_catalogbyid(catalog_uuid=image_id, catalogs=catalogs)
1551 if catalog_hash_name:
1552 self.logger.info("Found catalog entry {} for image id {}".format(catalog_hash_name, image_id))
1553 else:
1554 raise vimconn.vimconnNotFoundException("new_vminstance(): Failed create vApp {}: "
1555 "(Failed retrieve catalog information {})".format(name, image_id))
1556
1557
1558 # Set vCPU and Memory based on flavor.
bayramovb6ffe792016-09-28 11:50:56 +04001559 vm_cpus = None
1560 vm_memory = None
bhangarea92ae392017-01-12 22:30:29 -08001561 vm_disk = None
bhangare68e73e62017-07-04 22:44:01 -07001562 numas = None
kateac1e3792017-04-01 02:16:39 -07001563
bayramovb6ffe792016-09-28 11:50:56 +04001564 if flavor_id is not None:
kateeb044522017-03-06 23:54:39 -08001565 if flavor_id not in vimconnector.flavorlist:
kate15f1c382016-12-15 01:12:40 -08001566 raise vimconn.vimconnNotFoundException("new_vminstance(): Failed create vApp {}: "
1567 "Failed retrieve flavor information "
1568 "flavor id {}".format(name, flavor_id))
bayramovb6ffe792016-09-28 11:50:56 +04001569 else:
1570 try:
kateeb044522017-03-06 23:54:39 -08001571 flavor = vimconnector.flavorlist[flavor_id]
kate15f1c382016-12-15 01:12:40 -08001572 vm_cpus = flavor[FLAVOR_VCPUS_KEY]
1573 vm_memory = flavor[FLAVOR_RAM_KEY]
bhangarea92ae392017-01-12 22:30:29 -08001574 vm_disk = flavor[FLAVOR_DISK_KEY]
bhangarefda5f7c2017-01-12 23:50:34 -08001575 extended = flavor.get("extended", None)
1576 if extended:
1577 numas=extended.get("numas", None)
kateac1e3792017-04-01 02:16:39 -07001578
kateeb044522017-03-06 23:54:39 -08001579 except Exception as exp:
1580 raise vimconn.vimconnException("Corrupted flavor. {}.Exception: {}".format(flavor_id, exp))
bayramov325fa1c2016-09-08 01:42:46 -07001581
bayramovef390722016-09-27 03:34:46 -07001582 # image upload creates template name as catalog name space Template.
kate15f1c382016-12-15 01:12:40 -08001583 templateName = self.get_catalogbyid(catalog_uuid=image_id, catalogs=catalogs)
bayramovef390722016-09-27 03:34:46 -07001584 power_on = 'false'
1585 if start:
1586 power_on = 'true'
1587
1588 # client must provide at least one entry in net_list if not we report error
bhangare0e571a92017-01-12 04:02:23 -08001589 #If net type is mgmt, then configure it as primary net & use its NIC index as primary NIC
1590 #If no mgmt, then the 1st NN in netlist is considered as primary net.
1591 primary_net = None
kate15f1c382016-12-15 01:12:40 -08001592 primary_netname = None
Ravi Chamartyb9b77462018-10-07 15:45:44 +00001593 primary_net_href = None
kate15f1c382016-12-15 01:12:40 -08001594 network_mode = 'bridged'
bayramovb6ffe792016-09-28 11:50:56 +04001595 if net_list is not None and len(net_list) > 0:
bhangare0e571a92017-01-12 04:02:23 -08001596 for net in net_list:
tierno19860412017-10-03 10:46:46 +02001597 if 'use' in net and net['use'] == 'mgmt' and not primary_net:
bhangare0e571a92017-01-12 04:02:23 -08001598 primary_net = net
bayramovb6ffe792016-09-28 11:50:56 +04001599 if primary_net is None:
bhangare0e571a92017-01-12 04:02:23 -08001600 primary_net = net_list[0]
1601
1602 try:
1603 primary_net_id = primary_net['net_id']
Ravi Chamartyb9b77462018-10-07 15:45:44 +00001604 url_list = [self.url, '/api/network/', primary_net_id]
1605 primary_net_href = ''.join(url_list)
bhangare0e571a92017-01-12 04:02:23 -08001606 network_dict = self.get_vcd_network(network_uuid=primary_net_id)
1607 if 'name' in network_dict:
1608 primary_netname = network_dict['name']
1609
1610 except KeyError:
1611 raise vimconn.vimconnException("Corrupted flavor. {}".format(primary_net))
1612 else:
1613 raise vimconn.vimconnUnexpectedResponse("new_vminstance(): Failed network list is empty.".format(name))
bayramovef390722016-09-27 03:34:46 -07001614
1615 # use: 'data', 'bridge', 'mgmt'
1616 # create vApp. Set vcpu and ram based on flavor id.
bhangarebfdca492017-03-11 01:32:46 -08001617 try:
kasarc5bf2932018-03-09 04:15:22 -08001618 vdc_obj = VDC(self.client, resource=org.get_vdc(self.tenant_name))
1619 if not vdc_obj:
sbhangarea8e5b782018-06-21 02:10:03 -07001620 raise vimconn.vimconnNotFoundException("new_vminstance(): Failed to get VDC object")
bhangare1a0b97c2017-06-21 02:20:15 -07001621
kasarc5bf2932018-03-09 04:15:22 -08001622 for retry in (1,2):
1623 items = org.get_catalog_item(catalog_hash_name, catalog_hash_name)
1624 catalog_items = [items.attrib]
1625
1626 if len(catalog_items) == 1:
1627 if self.client:
1628 headers = {'Accept':'application/*+xml;version=' + API_VERSION,
1629 'x-vcloud-authorization': self.client._session.headers['x-vcloud-authorization']}
1630
1631 response = self.perform_request(req_type='GET',
1632 url=catalog_items[0].get('href'),
1633 headers=headers)
1634 catalogItem = XmlElementTree.fromstring(response.content)
1635 entity = [child for child in catalogItem if child.get("type") == "application/vnd.vmware.vcloud.vAppTemplate+xml"][0]
1636 vapp_tempalte_href = entity.get("href")
sbhangarea8e5b782018-06-21 02:10:03 -07001637
kasarc5bf2932018-03-09 04:15:22 -08001638 response = self.perform_request(req_type='GET',
1639 url=vapp_tempalte_href,
sbhangarea8e5b782018-06-21 02:10:03 -07001640 headers=headers)
kasarc5bf2932018-03-09 04:15:22 -08001641 if response.status_code != requests.codes.ok:
1642 self.logger.debug("REST API call {} failed. Return status code {}".format(vapp_tempalte_href,
1643 response.status_code))
1644 else:
1645 result = (response.content).replace("\n"," ")
1646
1647 src = re.search('<Vm goldMaster="false"\sstatus="\d+"\sname="(.*?)"\s'
1648 'id="(\w+:\w+:vm:.*?)"\shref="(.*?)"\s'
1649 'type="application/vnd\.vmware\.vcloud\.vm\+xml',result)
1650 if src:
1651 vm_name = src.group(1)
1652 vm_id = src.group(2)
1653 vm_href = src.group(3)
1654
1655 cpus = re.search('<rasd:Description>Number of Virtual CPUs</.*?>(\d+)</rasd:VirtualQuantity>',result).group(1)
1656 memory_mb = re.search('<rasd:Description>Memory Size</.*?>(\d+)</rasd:VirtualQuantity>',result).group(1)
1657 cores = re.search('<vmw:CoresPerSocket ovf:required.*?>(\d+)</vmw:CoresPerSocket>',result).group(1)
1658
sbhangarea8e5b782018-06-21 02:10:03 -07001659 headers['Content-Type'] = 'application/vnd.vmware.vcloud.instantiateVAppTemplateParams+xml'
kasarc5bf2932018-03-09 04:15:22 -08001660 vdc_id = vdc.get('id').split(':')[-1]
1661 instantiate_vapp_href = "{}/api/vdc/{}/action/instantiateVAppTemplate".format(self.url,
sbhangarea8e5b782018-06-21 02:10:03 -07001662 vdc_id)
kasarc5bf2932018-03-09 04:15:22 -08001663 data = """<?xml version="1.0" encoding="UTF-8"?>
1664 <InstantiateVAppTemplateParams
1665 xmlns="http://www.vmware.com/vcloud/v1.5"
1666 name="{}"
1667 deploy="false"
1668 powerOn="false"
1669 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
1670 xmlns:ovf="http://schemas.dmtf.org/ovf/envelope/1">
1671 <Description>Vapp instantiation</Description>
1672 <InstantiationParams>
1673 <NetworkConfigSection>
1674 <ovf:Info>Configuration parameters for logical networks</ovf:Info>
Ravi Chamartyb9b77462018-10-07 15:45:44 +00001675 <NetworkConfig networkName="{}">
kasarc5bf2932018-03-09 04:15:22 -08001676 <Configuration>
Ravi Chamartyb9b77462018-10-07 15:45:44 +00001677 <ParentNetwork href="{}" />
kasarc5bf2932018-03-09 04:15:22 -08001678 <FenceMode>bridged</FenceMode>
1679 </Configuration>
1680 </NetworkConfig>
1681 </NetworkConfigSection>
1682 <LeaseSettingsSection
1683 type="application/vnd.vmware.vcloud.leaseSettingsSection+xml">
1684 <ovf:Info>Lease Settings</ovf:Info>
1685 <StorageLeaseInSeconds>172800</StorageLeaseInSeconds>
1686 <StorageLeaseExpiration>2014-04-25T08:08:16.438-07:00</StorageLeaseExpiration>
1687 </LeaseSettingsSection>
1688 </InstantiationParams>
sbhangarea8e5b782018-06-21 02:10:03 -07001689 <Source href="{}"/>
kasarc5bf2932018-03-09 04:15:22 -08001690 <SourcedItem>
1691 <Source href="{}" id="{}" name="{}"
1692 type="application/vnd.vmware.vcloud.vm+xml"/>
1693 <VmGeneralParams>
1694 <NeedsCustomization>false</NeedsCustomization>
1695 </VmGeneralParams>
1696 <InstantiationParams>
1697 <NetworkConnectionSection>
1698 <ovf:Info>Specifies the available VM network connections</ovf:Info>
1699 <NetworkConnection network="{}">
1700 <NetworkConnectionIndex>0</NetworkConnectionIndex>
1701 <IsConnected>true</IsConnected>
sbhangarea8e5b782018-06-21 02:10:03 -07001702 <IpAddressAllocationMode>DHCP</IpAddressAllocationMode>
1703 </NetworkConnection>
kasarc5bf2932018-03-09 04:15:22 -08001704 </NetworkConnectionSection><ovf:VirtualHardwareSection>
1705 <ovf:Info>Virtual hardware requirements</ovf:Info>
1706 <ovf:Item xmlns:rasd="http://schemas.dmtf.org/wbem/wscim/1/cim-schema/2/CIM_ResourceAllocationSettingData"
1707 xmlns:vmw="http://www.vmware.com/schema/ovf">
1708 <rasd:AllocationUnits>hertz * 10^6</rasd:AllocationUnits>
1709 <rasd:Description>Number of Virtual CPUs</rasd:Description>
1710 <rasd:ElementName xmlns:py="http://codespeak.net/lxml/objectify/pytype" py:pytype="str">{cpu} virtual CPU(s)</rasd:ElementName>
sbhangarea8e5b782018-06-21 02:10:03 -07001711 <rasd:InstanceID>4</rasd:InstanceID>
kasarc5bf2932018-03-09 04:15:22 -08001712 <rasd:Reservation>0</rasd:Reservation>
1713 <rasd:ResourceType>3</rasd:ResourceType>
1714 <rasd:VirtualQuantity xmlns:py="http://codespeak.net/lxml/objectify/pytype" py:pytype="int">{cpu}</rasd:VirtualQuantity>
1715 <rasd:Weight>0</rasd:Weight>
1716 <vmw:CoresPerSocket ovf:required="false">{core}</vmw:CoresPerSocket>
1717 </ovf:Item><ovf:Item xmlns:rasd="http://schemas.dmtf.org/wbem/wscim/1/cim-schema/2/CIM_ResourceAllocationSettingData">
1718 <rasd:AllocationUnits>byte * 2^20</rasd:AllocationUnits>
1719 <rasd:Description>Memory Size</rasd:Description>
1720 <rasd:ElementName xmlns:py="http://codespeak.net/lxml/objectify/pytype" py:pytype="str">{memory} MB of memory</rasd:ElementName>
1721 <rasd:InstanceID>5</rasd:InstanceID>
1722 <rasd:Reservation>0</rasd:Reservation>
1723 <rasd:ResourceType>4</rasd:ResourceType>
1724 <rasd:VirtualQuantity xmlns:py="http://codespeak.net/lxml/objectify/pytype" py:pytype="int">{memory}</rasd:VirtualQuantity>
1725 <rasd:Weight>0</rasd:Weight>
1726 </ovf:Item>
sbhangarea8e5b782018-06-21 02:10:03 -07001727 </ovf:VirtualHardwareSection>
kasarc5bf2932018-03-09 04:15:22 -08001728 </InstantiationParams>
1729 </SourcedItem>
1730 <AllEULAsAccepted>false</AllEULAsAccepted>
1731 </InstantiateVAppTemplateParams>""".format(vmname_andid,
Ravi Chamartyb9b77462018-10-07 15:45:44 +00001732 primary_netname,
1733 primary_net_href,
kasarc5bf2932018-03-09 04:15:22 -08001734 vapp_tempalte_href,
1735 vm_href,
1736 vm_id,
1737 vm_name,
1738 primary_netname,
1739 cpu=cpus,
1740 core=cores,
1741 memory=memory_mb)
1742
1743 response = self.perform_request(req_type='POST',
1744 url=instantiate_vapp_href,
1745 headers=headers,
1746 data=data)
1747
1748 if response.status_code != 201:
1749 self.logger.error("REST call {} failed reason : {}"\
1750 "status code : {}".format(instantiate_vapp_href,
1751 response.content,
1752 response.status_code))
1753 raise vimconn.vimconnException("new_vminstance(): Failed to create"\
1754 "vAapp {}".format(vmname_andid))
1755 else:
1756 vapptask = self.get_task_from_response(response.content)
1757
1758 if vapptask is None and retry==1:
bhangare68e73e62017-07-04 22:44:01 -07001759 self.get_token() # Retry getting token
1760 continue
1761 else:
1762 break
1763
bhangare1a0b97c2017-06-21 02:20:15 -07001764 if vapptask is None or vapptask is False:
bhangarebfdca492017-03-11 01:32:46 -08001765 raise vimconn.vimconnUnexpectedResponse(
1766 "new_vminstance(): failed to create vApp {}".format(vmname_andid))
kasarc5bf2932018-03-09 04:15:22 -08001767
sbhangarea8e5b782018-06-21 02:10:03 -07001768 # wait for task to complete
kasarc5bf2932018-03-09 04:15:22 -08001769 result = self.client.get_task_monitor().wait_for_success(task=vapptask)
1770
1771 if result.get('status') == 'success':
1772 self.logger.debug("new_vminstance(): Sucessfully created Vapp {}".format(vmname_andid))
1773 else:
1774 raise vimconn.vimconnUnexpectedResponse(
1775 "new_vminstance(): failed to create vApp {}".format(vmname_andid))
bhangarebfdca492017-03-11 01:32:46 -08001776
1777 except Exception as exp:
1778 raise vimconn.vimconnUnexpectedResponse(
1779 "new_vminstance(): failed to create vApp {} with Exception:{}".format(vmname_andid, exp))
bayramovef390722016-09-27 03:34:46 -07001780
1781 # we should have now vapp in undeployed state.
bhangarebfdca492017-03-11 01:32:46 -08001782 try:
kasarc5bf2932018-03-09 04:15:22 -08001783 vdc_obj = VDC(self.client, href=vdc.get('href'))
1784 vapp_resource = vdc_obj.get_vapp(vmname_andid)
1785 vapp_uuid = vapp_resource.get('id').split(':')[-1]
1786 vapp = VApp(self.client, resource=vapp_resource)
bhangare1a0b97c2017-06-21 02:20:15 -07001787
bhangarebfdca492017-03-11 01:32:46 -08001788 except Exception as exp:
1789 raise vimconn.vimconnUnexpectedResponse(
1790 "new_vminstance(): Failed to retrieve vApp {} after creation: Exception:{}"
1791 .format(vmname_andid, exp))
1792
bhangare1a0b97c2017-06-21 02:20:15 -07001793 if vapp_uuid is None:
bayramovbd6160f2016-09-28 04:12:05 +04001794 raise vimconn.vimconnUnexpectedResponse(
bhangarebfdca492017-03-11 01:32:46 -08001795 "new_vminstance(): Failed to retrieve vApp {} after creation".format(
bhangarea92ae392017-01-12 22:30:29 -08001796 vmname_andid))
1797
kateac1e3792017-04-01 02:16:39 -07001798 #Add PCI passthrough/SRIOV configrations
bhangarefda5f7c2017-01-12 23:50:34 -08001799 vm_obj = None
kateac1e3792017-04-01 02:16:39 -07001800 pci_devices_info = []
1801 sriov_net_info = []
1802 reserve_memory = False
1803
1804 for net in net_list:
tierno66eba6e2017-11-10 17:09:18 +01001805 if net["type"] == "PF" or net["type"] == "PCI-PASSTHROUGH":
kateac1e3792017-04-01 02:16:39 -07001806 pci_devices_info.append(net)
tierno66eba6e2017-11-10 17:09:18 +01001807 elif (net["type"] == "VF" or net["type"] == "SR-IOV" or net["type"] == "VFnotShared") and 'net_id'in net:
kateac1e3792017-04-01 02:16:39 -07001808 sriov_net_info.append(net)
1809
1810 #Add PCI
bhangarefda5f7c2017-01-12 23:50:34 -08001811 if len(pci_devices_info) > 0:
1812 self.logger.info("Need to add PCI devices {} into VM {}".format(pci_devices_info,
1813 vmname_andid ))
1814 PCI_devices_status, vm_obj, vcenter_conect = self.add_pci_devices(vapp_uuid,
1815 pci_devices_info,
1816 vmname_andid)
1817 if PCI_devices_status:
1818 self.logger.info("Added PCI devives {} to VM {}".format(
1819 pci_devices_info,
1820 vmname_andid)
1821 )
kateac1e3792017-04-01 02:16:39 -07001822 reserve_memory = True
bhangarefda5f7c2017-01-12 23:50:34 -08001823 else:
1824 self.logger.info("Fail to add PCI devives {} to VM {}".format(
1825 pci_devices_info,
1826 vmname_andid)
1827 )
bhangare1a0b97c2017-06-21 02:20:15 -07001828
bhangare06312472017-03-30 05:49:07 -07001829 # Modify vm disk
bhangarea92ae392017-01-12 22:30:29 -08001830 if vm_disk:
1831 #Assuming there is only one disk in ovf and fast provisioning in organization vDC is disabled
1832 result = self.modify_vm_disk(vapp_uuid, vm_disk)
1833 if result :
1834 self.logger.debug("Modified Disk size of VM {} ".format(vmname_andid))
bayramovef390722016-09-27 03:34:46 -07001835
bhangare06312472017-03-30 05:49:07 -07001836 #Add new or existing disks to vApp
1837 if disk_list:
1838 added_existing_disk = False
1839 for disk in disk_list:
kasar0c007d62017-05-19 03:13:57 -07001840 if 'device_type' in disk and disk['device_type'] == 'cdrom':
1841 image_id = disk['image_id']
1842 # Adding CD-ROM to VM
1843 # will revisit code once specification ready to support this feature
1844 self.insert_media_to_vm(vapp, image_id)
1845 elif "image_id" in disk and disk["image_id"] is not None:
bhangare06312472017-03-30 05:49:07 -07001846 self.logger.debug("Adding existing disk from image {} to vm {} ".format(
1847 disk["image_id"] , vapp_uuid))
1848 self.add_existing_disk(catalogs=catalogs,
1849 image_id=disk["image_id"],
1850 size = disk["size"],
1851 template_name=templateName,
1852 vapp_uuid=vapp_uuid
1853 )
1854 added_existing_disk = True
1855 else:
1856 #Wait till added existing disk gets reflected into vCD database/API
1857 if added_existing_disk:
1858 time.sleep(5)
1859 added_existing_disk = False
bhangare1a0b97c2017-06-21 02:20:15 -07001860 self.add_new_disk(vapp_uuid, disk['size'])
bhangare06312472017-03-30 05:49:07 -07001861
kasarde691232017-03-25 03:37:31 -07001862 if numas:
1863 # Assigning numa affinity setting
1864 for numa in numas:
1865 if 'paired-threads-id' in numa:
1866 paired_threads_id = numa['paired-threads-id']
1867 self.set_numa_affinity(vapp_uuid, paired_threads_id)
1868
bhangare0e571a92017-01-12 04:02:23 -08001869 # add NICs & connect to networks in netlist
bayramovef390722016-09-27 03:34:46 -07001870 try:
Ravi Chamarty2fa47b42018-10-22 23:59:10 +00001871 vdc_obj = VDC(self.client, href=vdc.get('href'))
1872 vapp_resource = vdc_obj.get_vapp(vmname_andid)
1873 vapp = VApp(self.client, resource=vapp_resource)
1874
1875 self.logger.info("Removing primary NIC: ")
1876 # First remove all NICs so that NIC properties can be adjusted as needed
1877 self.remove_primary_network_adapter_from_all_vms(vapp)
1878
kate15f1c382016-12-15 01:12:40 -08001879 self.logger.info("Request to connect VM to a network: {}".format(net_list))
bhangare0e571a92017-01-12 04:02:23 -08001880 primary_nic_index = 0
Ravi Chamartyb9b77462018-10-07 15:45:44 +00001881 nicIndex = 0
bayramovef390722016-09-27 03:34:46 -07001882 for net in net_list:
1883 # openmano uses network id in UUID format.
1884 # vCloud Director need a name so we do reverse operation from provided UUID we lookup a name
kate15f1c382016-12-15 01:12:40 -08001885 # [{'use': 'bridge', 'net_id': '527d4bf7-566a-41e7-a9e7-ca3cdd9cef4f', 'type': 'virtual',
1886 # 'vpci': '0000:00:11.0', 'name': 'eth0'}]
1887
1888 if 'net_id' not in net:
1889 continue
1890
bhangare97b192d2017-10-05 00:51:15 -07001891 #Using net_id as a vim_id i.e. vim interface id, as do not have saperate vim interface id
1892 #Same will be returned in refresh_vms_status() as vim_interface_id
1893 net['vim_id'] = net['net_id'] # Provide the same VIM identifier as the VIM network
tierno19860412017-10-03 10:46:46 +02001894
bayramovef390722016-09-27 03:34:46 -07001895 interface_net_id = net['net_id']
kate15f1c382016-12-15 01:12:40 -08001896 interface_net_name = self.get_network_name_by_id(network_uuid=interface_net_id)
bayramovef390722016-09-27 03:34:46 -07001897 interface_network_mode = net['use']
1898
bhangare0e571a92017-01-12 04:02:23 -08001899 if interface_network_mode == 'mgmt':
1900 primary_nic_index = nicIndex
1901
kate15f1c382016-12-15 01:12:40 -08001902 """- POOL (A static IP address is allocated automatically from a pool of addresses.)
1903 - DHCP (The IP address is obtained from a DHCP service.)
1904 - MANUAL (The IP address is assigned manually in the IpAddress element.)
1905 - NONE (No IP addressing mode specified.)"""
1906
1907 if primary_netname is not None:
Ravi Chamarty2fa47b42018-10-22 23:59:10 +00001908 self.logger.debug("new_vminstance(): Filtering by net name {}".format(interface_net_name))
kasarc5bf2932018-03-09 04:15:22 -08001909 nets = filter(lambda n: n.get('name') == interface_net_name, self.get_network_list())
1910 #For python3
1911 #nets = [n for n in self.get_network_list() if n.get('name') == interface_net_name]
bayramovef390722016-09-27 03:34:46 -07001912 if len(nets) == 1:
kasarc5bf2932018-03-09 04:15:22 -08001913 self.logger.info("new_vminstance(): Found requested network: {}".format(nets[0].get('name')))
bhangare1a0b97c2017-06-21 02:20:15 -07001914
Ravi Chamarty2fa47b42018-10-22 23:59:10 +00001915 if interface_net_name != primary_netname:
1916 # connect network to VM - with all DHCP by default
1917 self.logger.info("new_vminstance(): Attaching net {} to vapp".format(interface_net_name))
1918 task = vapp.connect_org_vdc_network(nets[0].get('name'))
1919 self.client.get_task_monitor().wait_for_success(task=task)
kasar3ac5dc42017-03-15 06:28:22 -07001920
tierno66eba6e2017-11-10 17:09:18 +01001921 type_list = ('PF', 'PCI-PASSTHROUGH', 'VF', 'SR-IOV', 'VFnotShared')
kasar3ac5dc42017-03-15 06:28:22 -07001922 if 'type' in net and net['type'] not in type_list:
1923 # fetching nic type from vnf
1924 if 'model' in net:
kasarc5bf2932018-03-09 04:15:22 -08001925 if net['model'] is not None and net['model'].lower() == 'virtio':
kasar204e39e2018-01-25 00:57:02 -08001926 nic_type = 'VMXNET3'
1927 else:
1928 nic_type = net['model']
1929
kasar3ac5dc42017-03-15 06:28:22 -07001930 self.logger.info("new_vminstance(): adding network adapter "\
kasarc5bf2932018-03-09 04:15:22 -08001931 "to a network {}".format(nets[0].get('name')))
1932 self.add_network_adapter_to_vms(vapp, nets[0].get('name'),
kasar3ac5dc42017-03-15 06:28:22 -07001933 primary_nic_index,
1934 nicIndex,
kasardc1f02e2017-03-25 07:20:30 -07001935 net,
kasar3ac5dc42017-03-15 06:28:22 -07001936 nic_type=nic_type)
1937 else:
1938 self.logger.info("new_vminstance(): adding network adapter "\
kasarc5bf2932018-03-09 04:15:22 -08001939 "to a network {}".format(nets[0].get('name')))
1940 self.add_network_adapter_to_vms(vapp, nets[0].get('name'),
kasar3ac5dc42017-03-15 06:28:22 -07001941 primary_nic_index,
kasardc1f02e2017-03-25 07:20:30 -07001942 nicIndex,
1943 net)
bhangare0e571a92017-01-12 04:02:23 -08001944 nicIndex += 1
bayramovef390722016-09-27 03:34:46 -07001945
kasardc1f02e2017-03-25 07:20:30 -07001946 # cloud-init for ssh-key injection
1947 if cloud_config:
1948 self.cloud_init(vapp,cloud_config)
1949
kateac1e3792017-04-01 02:16:39 -07001950 # ############# Stub code for SRIOV #################
1951 #Add SRIOV
1952# if len(sriov_net_info) > 0:
1953# self.logger.info("Need to add SRIOV adapters {} into VM {}".format(sriov_net_info,
1954# vmname_andid ))
1955# sriov_status, vm_obj, vcenter_conect = self.add_sriov(vapp_uuid,
1956# sriov_net_info,
1957# vmname_andid)
1958# if sriov_status:
1959# self.logger.info("Added SRIOV {} to VM {}".format(
1960# sriov_net_info,
1961# vmname_andid)
1962# )
1963# reserve_memory = True
1964# else:
1965# self.logger.info("Fail to add SRIOV {} to VM {}".format(
1966# sriov_net_info,
1967# vmname_andid)
1968# )
1969
1970 # If VM has PCI devices or SRIOV reserve memory for VM
1971 if reserve_memory:
bhangarebfdca492017-03-11 01:32:46 -08001972 memReserve = vm_obj.config.hardware.memoryMB
1973 spec = vim.vm.ConfigSpec()
1974 spec.memoryAllocation = vim.ResourceAllocationInfo(reservation=memReserve)
1975 task = vm_obj.ReconfigVM_Task(spec=spec)
1976 if task:
1977 result = self.wait_for_vcenter_task(task, vcenter_conect)
tierno19860412017-10-03 10:46:46 +02001978 self.logger.info("Reserved memory {} MB for "
1979 "VM VM status: {}".format(str(memReserve), result))
bhangarebfdca492017-03-11 01:32:46 -08001980 else:
tierno19860412017-10-03 10:46:46 +02001981 self.logger.info("Fail to reserved memory {} to VM {}".format(
1982 str(memReserve), str(vm_obj)))
bhangarefda5f7c2017-01-12 23:50:34 -08001983
kasarc5bf2932018-03-09 04:15:22 -08001984 self.logger.debug("new_vminstance(): starting power on vApp {} ".format(vmname_andid))
bhangare1a0b97c2017-06-21 02:20:15 -07001985
kasarc5bf2932018-03-09 04:15:22 -08001986 vapp_id = vapp_resource.get('id').split(':')[-1]
1987 poweron_task = self.power_on_vapp(vapp_id, vmname_andid)
1988 result = self.client.get_task_monitor().wait_for_success(task=poweron_task)
1989 if result.get('status') == 'success':
1990 self.logger.info("new_vminstance(): Successfully power on "\
1991 "vApp {}".format(vmname_andid))
1992 else:
1993 self.logger.error("new_vminstance(): failed to power on vApp "\
1994 "{}".format(vmname_andid))
bhangarebfdca492017-03-11 01:32:46 -08001995
1996 except Exception as exp :
1997 # it might be a case if specific mandatory entry in dict is empty or some other pyVcloud exception
kasarc5bf2932018-03-09 04:15:22 -08001998 self.logger.error("new_vminstance(): Failed create new vm instance {} with exception {}"
bhangare1a0b97c2017-06-21 02:20:15 -07001999 .format(name, exp))
2000 raise vimconn.vimconnException("new_vminstance(): Failed create new vm instance {} with exception {}"
2001 .format(name, exp))
bhangarefda5f7c2017-01-12 23:50:34 -08002002
bayramovef390722016-09-27 03:34:46 -07002003 # check if vApp deployed and if that the case return vApp UUID otherwise -1
kate13ab2c42016-12-23 01:34:24 -08002004 wait_time = 0
2005 vapp_uuid = None
2006 while wait_time <= MAX_WAIT_TIME:
bhangarebfdca492017-03-11 01:32:46 -08002007 try:
kasarc5bf2932018-03-09 04:15:22 -08002008 vapp_resource = vdc_obj.get_vapp(vmname_andid)
sbhangarea8e5b782018-06-21 02:10:03 -07002009 vapp = VApp(self.client, resource=vapp_resource)
bhangarebfdca492017-03-11 01:32:46 -08002010 except Exception as exp:
2011 raise vimconn.vimconnUnexpectedResponse(
2012 "new_vminstance(): Failed to retrieve vApp {} after creation: Exception:{}"
2013 .format(vmname_andid, exp))
2014
kasarc5bf2932018-03-09 04:15:22 -08002015 #if vapp and vapp.me.deployed:
2016 if vapp and vapp_resource.get('deployed') == 'true':
2017 vapp_uuid = vapp_resource.get('id').split(':')[-1]
kate13ab2c42016-12-23 01:34:24 -08002018 break
2019 else:
2020 self.logger.debug("new_vminstance(): Wait for vApp {} to deploy".format(name))
2021 time.sleep(INTERVAL_TIME)
2022
2023 wait_time +=INTERVAL_TIME
2024
sbhangarea8e5b782018-06-21 02:10:03 -07002025 #SET Affinity Rule for VM
2026 #Pre-requisites: User has created Hosh Groups in vCenter with respective Hosts to be used
2027 #While creating VIM account user has to pass the Host Group names in availability_zone list
2028 #"availability_zone" is a part of VIM "config" parameters
2029 #For example, in VIM config: "availability_zone":["HG_170","HG_174","HG_175"]
2030 #Host groups are referred as availability zones
2031 #With following procedure, deployed VM will be added into a VM group.
2032 #Then A VM to Host Affinity rule will be created using the VM group & Host group.
2033 if(availability_zone_list):
2034 self.logger.debug("Existing Host Groups in VIM {}".format(self.config.get('availability_zone')))
2035 #Admin access required for creating Affinity rules
2036 client = self.connect_as_admin()
2037 if not client:
2038 raise vimconn.vimconnConnectionException("Failed to connect vCD as admin")
2039 else:
2040 self.client = client
2041 if self.client:
2042 headers = {'Accept':'application/*+xml;version=27.0',
2043 'x-vcloud-authorization': self.client._session.headers['x-vcloud-authorization']}
2044 #Step1: Get provider vdc details from organization
2045 pvdc_href = self.get_pvdc_for_org(self.tenant_name, headers)
2046 if pvdc_href is not None:
2047 #Step2: Found required pvdc, now get resource pool information
2048 respool_href = self.get_resource_pool_details(pvdc_href, headers)
2049 if respool_href is None:
2050 #Raise error if respool_href not found
2051 msg = "new_vminstance():Error in finding resource pool details in pvdc {}"\
2052 .format(pvdc_href)
2053 self.log_message(msg)
2054
2055 #Step3: Verify requested availability zone(hostGroup) is present in vCD
2056 # get availability Zone
2057 vm_az = self.get_vm_availability_zone(availability_zone_index, availability_zone_list)
2058 # check if provided av zone(hostGroup) is present in vCD VIM
2059 status = self.check_availibility_zone(vm_az, respool_href, headers)
2060 if status is False:
2061 msg = "new_vminstance(): Error in finding availability zone(Host Group): {} in "\
2062 "resource pool {} status: {}".format(vm_az,respool_href,status)
2063 self.log_message(msg)
2064 else:
2065 self.logger.debug ("new_vminstance(): Availability zone {} found in VIM".format(vm_az))
2066
2067 #Step4: Find VM group references to create vm group
2068 vmgrp_href = self.find_vmgroup_reference(respool_href, headers)
2069 if vmgrp_href == None:
2070 msg = "new_vminstance(): No reference to VmGroup found in resource pool"
2071 self.log_message(msg)
2072
2073 #Step5: Create a VmGroup with name az_VmGroup
2074 vmgrp_name = vm_az + "_" + name #Formed VM Group name = Host Group name + VM name
2075 status = self.create_vmgroup(vmgrp_name, vmgrp_href, headers)
2076 if status is not True:
2077 msg = "new_vminstance(): Error in creating VM group {}".format(vmgrp_name)
2078 self.log_message(msg)
2079
2080 #VM Group url to add vms to vm group
2081 vmgrpname_url = self.url + "/api/admin/extension/vmGroup/name/"+ vmgrp_name
2082
2083 #Step6: Add VM to VM Group
2084 #Find VM uuid from vapp_uuid
2085 vm_details = self.get_vapp_details_rest(vapp_uuid)
2086 vm_uuid = vm_details['vmuuid']
2087
2088 status = self.add_vm_to_vmgroup(vm_uuid, vmgrpname_url, vmgrp_name, headers)
2089 if status is not True:
2090 msg = "new_vminstance(): Error in adding VM to VM group {}".format(vmgrp_name)
2091 self.log_message(msg)
2092
2093 #Step7: Create VM to Host affinity rule
2094 addrule_href = self.get_add_rule_reference (respool_href, headers)
2095 if addrule_href is None:
2096 msg = "new_vminstance(): Error in finding href to add rule in resource pool: {}"\
2097 .format(respool_href)
2098 self.log_message(msg)
2099
2100 status = self.create_vm_to_host_affinity_rule(addrule_href, vmgrp_name, vm_az, "Affinity", headers)
2101 if status is False:
2102 msg = "new_vminstance(): Error in creating affinity rule for VM {} in Host group {}"\
2103 .format(name, vm_az)
2104 self.log_message(msg)
2105 else:
2106 self.logger.debug("new_vminstance(): Affinity rule created successfully. Added {} in Host group {}"\
2107 .format(name, vm_az))
2108 #Reset token to a normal user to perform other operations
2109 self.get_token()
2110
bayramovef390722016-09-27 03:34:46 -07002111 if vapp_uuid is not None:
tierno98e909c2017-10-14 13:27:03 +02002112 return vapp_uuid, None
bayramovbd6160f2016-09-28 04:12:05 +04002113 else:
2114 raise vimconn.vimconnUnexpectedResponse("new_vminstance(): Failed create new vm instance {}".format(name))
bayramov325fa1c2016-09-08 01:42:46 -07002115
sbhangarea8e5b782018-06-21 02:10:03 -07002116
2117 def get_vcd_availibility_zones(self,respool_href, headers):
2118 """ Method to find presence of av zone is VIM resource pool
2119
2120 Args:
2121 respool_href - resource pool href
2122 headers - header information
2123
2124 Returns:
2125 vcd_az - list of azone present in vCD
2126 """
2127 vcd_az = []
2128 url=respool_href
2129 resp = self.perform_request(req_type='GET',url=respool_href, headers=headers)
2130
2131 if resp.status_code != requests.codes.ok:
2132 self.logger.debug ("REST API call {} failed. Return status code {}".format(url, resp.status_code))
2133 else:
2134 #Get the href to hostGroups and find provided hostGroup is present in it
2135 resp_xml = XmlElementTree.fromstring(resp.content)
2136 for child in resp_xml:
2137 if 'VMWProviderVdcResourcePool' in child.tag:
2138 for schild in child:
2139 if 'Link' in schild.tag:
2140 if schild.attrib.get('type') == "application/vnd.vmware.admin.vmwHostGroupsType+xml":
2141 hostGroup = schild.attrib.get('href')
2142 hg_resp = self.perform_request(req_type='GET',url=hostGroup, headers=headers)
2143 if hg_resp.status_code != requests.codes.ok:
2144 self.logger.debug ("REST API call {} failed. Return status code {}".format(hostGroup, hg_resp.status_code))
2145 else:
2146 hg_resp_xml = XmlElementTree.fromstring(hg_resp.content)
2147 for hostGroup in hg_resp_xml:
2148 if 'HostGroup' in hostGroup.tag:
2149 #append host group name to the list
2150 vcd_az.append(hostGroup.attrib.get("name"))
2151 return vcd_az
2152
2153
2154 def set_availability_zones(self):
2155 """
2156 Set vim availability zone
2157 """
2158
2159 vim_availability_zones = None
2160 availability_zone = None
2161 if 'availability_zone' in self.config:
2162 vim_availability_zones = self.config.get('availability_zone')
2163 if isinstance(vim_availability_zones, str):
2164 availability_zone = [vim_availability_zones]
2165 elif isinstance(vim_availability_zones, list):
2166 availability_zone = vim_availability_zones
2167 else:
2168 return availability_zone
2169
2170 return availability_zone
2171
2172
2173 def get_vm_availability_zone(self, availability_zone_index, availability_zone_list):
2174 """
2175 Return the availability zone to be used by the created VM.
2176 returns: The VIM availability zone to be used or None
2177 """
2178 if availability_zone_index is None:
2179 if not self.config.get('availability_zone'):
2180 return None
2181 elif isinstance(self.config.get('availability_zone'), str):
2182 return self.config['availability_zone']
2183 else:
2184 return self.config['availability_zone'][0]
2185
2186 vim_availability_zones = self.availability_zone
2187
2188 # check if VIM offer enough availability zones describe in the VNFD
2189 if vim_availability_zones and len(availability_zone_list) <= len(vim_availability_zones):
2190 # check if all the names of NFV AV match VIM AV names
2191 match_by_index = False
2192 for av in availability_zone_list:
2193 if av not in vim_availability_zones:
2194 match_by_index = True
2195 break
2196 if match_by_index:
2197 self.logger.debug("Required Availability zone or Host Group not found in VIM config")
2198 self.logger.debug("Input Availability zone list: {}".format(availability_zone_list))
2199 self.logger.debug("VIM configured Availability zones: {}".format(vim_availability_zones))
2200 self.logger.debug("VIM Availability zones will be used by index")
2201 return vim_availability_zones[availability_zone_index]
2202 else:
2203 return availability_zone_list[availability_zone_index]
2204 else:
2205 raise vimconn.vimconnConflictException("No enough availability zones at VIM for this deployment")
2206
2207
2208 def create_vm_to_host_affinity_rule(self, addrule_href, vmgrpname, hostgrpname, polarity, headers):
2209 """ Method to create VM to Host Affinity rule in vCD
2210
2211 Args:
2212 addrule_href - href to make a POST request
2213 vmgrpname - name of the VM group created
2214 hostgrpnmae - name of the host group created earlier
2215 polarity - Affinity or Anti-affinity (default: Affinity)
2216 headers - headers to make REST call
2217
2218 Returns:
2219 True- if rule is created
2220 False- Failed to create rule due to some error
2221
2222 """
2223 task_status = False
2224 rule_name = polarity + "_" + vmgrpname
2225 payload = """<?xml version="1.0" encoding="UTF-8"?>
2226 <vmext:VMWVmHostAffinityRule
2227 xmlns:vmext="http://www.vmware.com/vcloud/extension/v1.5"
2228 xmlns:vcloud="http://www.vmware.com/vcloud/v1.5"
2229 type="application/vnd.vmware.admin.vmwVmHostAffinityRule+xml">
2230 <vcloud:Name>{}</vcloud:Name>
2231 <vcloud:IsEnabled>true</vcloud:IsEnabled>
2232 <vcloud:IsMandatory>true</vcloud:IsMandatory>
2233 <vcloud:Polarity>{}</vcloud:Polarity>
2234 <vmext:HostGroupName>{}</vmext:HostGroupName>
2235 <vmext:VmGroupName>{}</vmext:VmGroupName>
2236 </vmext:VMWVmHostAffinityRule>""".format(rule_name, polarity, hostgrpname, vmgrpname)
2237
2238 resp = self.perform_request(req_type='POST',url=addrule_href, headers=headers, data=payload)
2239
2240 if resp.status_code != requests.codes.accepted:
2241 self.logger.debug ("REST API call {} failed. Return status code {}".format(addrule_href, resp.status_code))
2242 task_status = False
2243 return task_status
2244 else:
2245 affinity_task = self.get_task_from_response(resp.content)
2246 self.logger.debug ("affinity_task: {}".format(affinity_task))
2247 if affinity_task is None or affinity_task is False:
2248 raise vimconn.vimconnUnexpectedResponse("failed to find affinity task")
2249 # wait for task to complete
2250 result = self.client.get_task_monitor().wait_for_success(task=affinity_task)
2251 if result.get('status') == 'success':
2252 self.logger.debug("Successfully created affinity rule {}".format(rule_name))
2253 return True
2254 else:
2255 raise vimconn.vimconnUnexpectedResponse(
2256 "failed to create affinity rule {}".format(rule_name))
2257
2258
2259 def get_add_rule_reference (self, respool_href, headers):
2260 """ This method finds href to add vm to host affinity rule to vCD
2261
2262 Args:
2263 respool_href- href to resource pool
2264 headers- header information to make REST call
2265
2266 Returns:
2267 None - if no valid href to add rule found or
2268 addrule_href - href to add vm to host affinity rule of resource pool
2269 """
2270 addrule_href = None
2271 resp = self.perform_request(req_type='GET',url=respool_href, headers=headers)
2272
2273 if resp.status_code != requests.codes.ok:
2274 self.logger.debug ("REST API call {} failed. Return status code {}".format(respool_href, resp.status_code))
2275 else:
2276
2277 resp_xml = XmlElementTree.fromstring(resp.content)
2278 for child in resp_xml:
2279 if 'VMWProviderVdcResourcePool' in child.tag:
2280 for schild in child:
2281 if 'Link' in schild.tag:
2282 if schild.attrib.get('type') == "application/vnd.vmware.admin.vmwVmHostAffinityRule+xml" and \
2283 schild.attrib.get('rel') == "add":
2284 addrule_href = schild.attrib.get('href')
2285 break
2286
2287 return addrule_href
2288
2289
2290 def add_vm_to_vmgroup(self, vm_uuid, vmGroupNameURL, vmGroup_name, headers):
2291 """ Method to add deployed VM to newly created VM Group.
2292 This is required to create VM to Host affinity in vCD
2293
2294 Args:
2295 vm_uuid- newly created vm uuid
2296 vmGroupNameURL- URL to VM Group name
2297 vmGroup_name- Name of VM group created
2298 headers- Headers for REST request
2299
2300 Returns:
2301 True- if VM added to VM group successfully
2302 False- if any error encounter
2303 """
2304
2305 addvm_resp = self.perform_request(req_type='GET',url=vmGroupNameURL, headers=headers)#, data=payload)
2306
2307 if addvm_resp.status_code != requests.codes.ok:
2308 self.logger.debug ("REST API call to get VM Group Name url {} failed. Return status code {}"\
2309 .format(vmGroupNameURL, addvm_resp.status_code))
2310 return False
2311 else:
2312 resp_xml = XmlElementTree.fromstring(addvm_resp.content)
2313 for child in resp_xml:
2314 if child.tag.split('}')[1] == 'Link':
2315 if child.attrib.get("rel") == "addVms":
2316 addvmtogrpURL = child.attrib.get("href")
2317
2318 #Get vm details
2319 url_list = [self.url, '/api/vApp/vm-',vm_uuid]
2320 vmdetailsURL = ''.join(url_list)
2321
2322 resp = self.perform_request(req_type='GET',url=vmdetailsURL, headers=headers)
2323
2324 if resp.status_code != requests.codes.ok:
2325 self.logger.debug ("REST API call {} failed. Return status code {}".format(vmdetailsURL, resp.status_code))
2326 return False
2327
2328 #Parse VM details
2329 resp_xml = XmlElementTree.fromstring(resp.content)
2330 if resp_xml.tag.split('}')[1] == "Vm":
2331 vm_id = resp_xml.attrib.get("id")
2332 vm_name = resp_xml.attrib.get("name")
2333 vm_href = resp_xml.attrib.get("href")
2334 #print vm_id, vm_name, vm_href
2335 #Add VM into VMgroup
2336 payload = """<?xml version="1.0" encoding="UTF-8"?>\
2337 <ns2:Vms xmlns:ns2="http://www.vmware.com/vcloud/v1.5" \
2338 xmlns="http://www.vmware.com/vcloud/versions" \
2339 xmlns:ns3="http://schemas.dmtf.org/ovf/envelope/1" \
2340 xmlns:ns4="http://schemas.dmtf.org/wbem/wscim/1/cim-schema/2/CIM_VirtualSystemSettingData" \
2341 xmlns:ns5="http://schemas.dmtf.org/wbem/wscim/1/common" \
2342 xmlns:ns6="http://schemas.dmtf.org/wbem/wscim/1/cim-schema/2/CIM_ResourceAllocationSettingData" \
2343 xmlns:ns7="http://www.vmware.com/schema/ovf" \
2344 xmlns:ns8="http://schemas.dmtf.org/ovf/environment/1" \
2345 xmlns:ns9="http://www.vmware.com/vcloud/extension/v1.5">\
2346 <ns2:VmReference href="{}" id="{}" name="{}" \
2347 type="application/vnd.vmware.vcloud.vm+xml" />\
2348 </ns2:Vms>""".format(vm_href, vm_id, vm_name)
2349
2350 addvmtogrp_resp = self.perform_request(req_type='POST',url=addvmtogrpURL, headers=headers, data=payload)
2351
2352 if addvmtogrp_resp.status_code != requests.codes.accepted:
2353 self.logger.debug ("REST API call {} failed. Return status code {}".format(addvmtogrpURL, addvmtogrp_resp.status_code))
2354 return False
2355 else:
2356 self.logger.debug ("Done adding VM {} to VMgroup {}".format(vm_name, vmGroup_name))
2357 return True
2358
2359
2360 def create_vmgroup(self, vmgroup_name, vmgroup_href, headers):
2361 """Method to create a VM group in vCD
2362
2363 Args:
2364 vmgroup_name : Name of VM group to be created
2365 vmgroup_href : href for vmgroup
2366 headers- Headers for REST request
2367 """
2368 #POST to add URL with required data
2369 vmgroup_status = False
2370 payload = """<VMWVmGroup xmlns="http://www.vmware.com/vcloud/extension/v1.5" \
2371 xmlns:vcloud_v1.5="http://www.vmware.com/vcloud/v1.5" name="{}">\
2372 <vmCount>1</vmCount>\
2373 </VMWVmGroup>""".format(vmgroup_name)
2374 resp = self.perform_request(req_type='POST',url=vmgroup_href, headers=headers, data=payload)
2375
2376 if resp.status_code != requests.codes.accepted:
2377 self.logger.debug ("REST API call {} failed. Return status code {}".format(vmgroup_href, resp.status_code))
2378 return vmgroup_status
2379 else:
2380 vmgroup_task = self.get_task_from_response(resp.content)
2381 if vmgroup_task is None or vmgroup_task is False:
2382 raise vimconn.vimconnUnexpectedResponse(
2383 "create_vmgroup(): failed to create VM group {}".format(vmgroup_name))
2384
2385 # wait for task to complete
2386 result = self.client.get_task_monitor().wait_for_success(task=vmgroup_task)
2387
2388 if result.get('status') == 'success':
2389 self.logger.debug("create_vmgroup(): Successfully created VM group {}".format(vmgroup_name))
2390 #time.sleep(10)
2391 vmgroup_status = True
2392 return vmgroup_status
2393 else:
2394 raise vimconn.vimconnUnexpectedResponse(\
2395 "create_vmgroup(): failed to create VM group {}".format(vmgroup_name))
2396
2397
2398 def find_vmgroup_reference(self, url, headers):
2399 """ Method to create a new VMGroup which is required to add created VM
2400 Args:
2401 url- resource pool href
2402 headers- header information
2403
2404 Returns:
2405 returns href to VM group to create VM group
2406 """
2407 #Perform GET on resource pool to find 'add' link to create VMGroup
2408 #https://vcd-ip/api/admin/extension/providervdc/<providervdc id>/resourcePools
2409 vmgrp_href = None
2410 resp = self.perform_request(req_type='GET',url=url, headers=headers)
2411
2412 if resp.status_code != requests.codes.ok:
2413 self.logger.debug ("REST API call {} failed. Return status code {}".format(url, resp.status_code))
2414 else:
2415 #Get the href to add vmGroup to vCD
2416 resp_xml = XmlElementTree.fromstring(resp.content)
2417 for child in resp_xml:
2418 if 'VMWProviderVdcResourcePool' in child.tag:
2419 for schild in child:
2420 if 'Link' in schild.tag:
2421 #Find href with type VMGroup and rel with add
2422 if schild.attrib.get('type') == "application/vnd.vmware.admin.vmwVmGroupType+xml"\
2423 and schild.attrib.get('rel') == "add":
2424 vmgrp_href = schild.attrib.get('href')
2425 return vmgrp_href
2426
2427
2428 def check_availibility_zone(self, az, respool_href, headers):
2429 """ Method to verify requested av zone is present or not in provided
2430 resource pool
2431
2432 Args:
2433 az - name of hostgroup (availibility_zone)
2434 respool_href - Resource Pool href
2435 headers - Headers to make REST call
2436 Returns:
2437 az_found - True if availibility_zone is found else False
2438 """
2439 az_found = False
2440 headers['Accept']='application/*+xml;version=27.0'
2441 resp = self.perform_request(req_type='GET',url=respool_href, headers=headers)
2442
2443 if resp.status_code != requests.codes.ok:
2444 self.logger.debug ("REST API call {} failed. Return status code {}".format(respool_href, resp.status_code))
2445 else:
2446 #Get the href to hostGroups and find provided hostGroup is present in it
2447 resp_xml = XmlElementTree.fromstring(resp.content)
2448
2449 for child in resp_xml:
2450 if 'VMWProviderVdcResourcePool' in child.tag:
2451 for schild in child:
2452 if 'Link' in schild.tag:
2453 if schild.attrib.get('type') == "application/vnd.vmware.admin.vmwHostGroupsType+xml":
2454 hostGroup_href = schild.attrib.get('href')
2455 hg_resp = self.perform_request(req_type='GET',url=hostGroup_href, headers=headers)
2456 if hg_resp.status_code != requests.codes.ok:
2457 self.logger.debug ("REST API call {} failed. Return status code {}".format(hostGroup_href, hg_resp.status_code))
2458 else:
2459 hg_resp_xml = XmlElementTree.fromstring(hg_resp.content)
2460 for hostGroup in hg_resp_xml:
2461 if 'HostGroup' in hostGroup.tag:
2462 if hostGroup.attrib.get("name") == az:
2463 az_found = True
2464 break
2465 return az_found
2466
2467
2468 def get_pvdc_for_org(self, org_vdc, headers):
2469 """ This method gets provider vdc references from organisation
2470
2471 Args:
2472 org_vdc - name of the organisation VDC to find pvdc
2473 headers - headers to make REST call
2474
2475 Returns:
2476 None - if no pvdc href found else
2477 pvdc_href - href to pvdc
2478 """
2479
2480 #Get provider VDC references from vCD
2481 pvdc_href = None
2482 #url = '<vcd url>/api/admin/extension/providerVdcReferences'
2483 url_list = [self.url, '/api/admin/extension/providerVdcReferences']
2484 url = ''.join(url_list)
2485
2486 response = self.perform_request(req_type='GET',url=url, headers=headers)
2487 if response.status_code != requests.codes.ok:
2488 self.logger.debug ("REST API call {} failed. Return status code {}"\
2489 .format(url, response.status_code))
2490 else:
2491 xmlroot_response = XmlElementTree.fromstring(response.content)
2492 for child in xmlroot_response:
2493 if 'ProviderVdcReference' in child.tag:
2494 pvdc_href = child.attrib.get('href')
2495 #Get vdcReferences to find org
2496 pvdc_resp = self.perform_request(req_type='GET',url=pvdc_href, headers=headers)
2497 if pvdc_resp.status_code != requests.codes.ok:
2498 raise vimconn.vimconnException("REST API call {} failed. "\
2499 "Return status code {}"\
2500 .format(url, pvdc_resp.status_code))
2501
2502 pvdc_resp_xml = XmlElementTree.fromstring(pvdc_resp.content)
2503 for child in pvdc_resp_xml:
2504 if 'Link' in child.tag:
2505 if child.attrib.get('type') == "application/vnd.vmware.admin.vdcReferences+xml":
2506 vdc_href = child.attrib.get('href')
2507
2508 #Check if provided org is present in vdc
2509 vdc_resp = self.perform_request(req_type='GET',
2510 url=vdc_href,
2511 headers=headers)
2512 if vdc_resp.status_code != requests.codes.ok:
2513 raise vimconn.vimconnException("REST API call {} failed. "\
2514 "Return status code {}"\
2515 .format(url, vdc_resp.status_code))
2516 vdc_resp_xml = XmlElementTree.fromstring(vdc_resp.content)
2517 for child in vdc_resp_xml:
2518 if 'VdcReference' in child.tag:
2519 if child.attrib.get('name') == org_vdc:
2520 return pvdc_href
2521
2522
2523 def get_resource_pool_details(self, pvdc_href, headers):
2524 """ Method to get resource pool information.
2525 Host groups are property of resource group.
2526 To get host groups, we need to GET details of resource pool.
2527
2528 Args:
2529 pvdc_href: href to pvdc details
2530 headers: headers
2531
2532 Returns:
2533 respool_href - Returns href link reference to resource pool
2534 """
2535 respool_href = None
2536 resp = self.perform_request(req_type='GET',url=pvdc_href, headers=headers)
2537
2538 if resp.status_code != requests.codes.ok:
2539 self.logger.debug ("REST API call {} failed. Return status code {}"\
2540 .format(pvdc_href, resp.status_code))
2541 else:
2542 respool_resp_xml = XmlElementTree.fromstring(resp.content)
2543 for child in respool_resp_xml:
2544 if 'Link' in child.tag:
2545 if child.attrib.get('type') == "application/vnd.vmware.admin.vmwProviderVdcResourcePoolSet+xml":
2546 respool_href = child.attrib.get("href")
2547 break
2548 return respool_href
2549
2550
2551 def log_message(self, msg):
2552 """
2553 Method to log error messages related to Affinity rule creation
2554 in new_vminstance & raise Exception
2555 Args :
2556 msg - Error message to be logged
2557
2558 """
2559 #get token to connect vCD as a normal user
2560 self.get_token()
2561 self.logger.debug(msg)
2562 raise vimconn.vimconnException(msg)
2563
2564
bayramovef390722016-09-27 03:34:46 -07002565 ##
2566 ##
2567 ## based on current discussion
2568 ##
2569 ##
2570 ## server:
2571 # created: '2016-09-08T11:51:58'
2572 # description: simple-instance.linux1.1
2573 # flavor: ddc6776e-75a9-11e6-ad5f-0800273e724c
2574 # hostId: e836c036-74e7-11e6-b249-0800273e724c
2575 # image: dde30fe6-75a9-11e6-ad5f-0800273e724c
2576 # status: ACTIVE
2577 # error_msg:
2578 # interfaces: …
2579 #
bayramovfe3f3c92016-10-04 07:53:41 +04002580 def get_vminstance(self, vim_vm_uuid=None):
bayramov5761ad12016-10-04 09:00:30 +04002581 """Returns the VM instance information from VIM"""
bayramov325fa1c2016-09-08 01:42:46 -07002582
bayramovef390722016-09-27 03:34:46 -07002583 self.logger.debug("Client requesting vm instance {} ".format(vim_vm_uuid))
bayramov325fa1c2016-09-08 01:42:46 -07002584
kasarc5bf2932018-03-09 04:15:22 -08002585 org, vdc = self.get_vdc_details()
bayramovef390722016-09-27 03:34:46 -07002586 if vdc is None:
bayramovfe3f3c92016-10-04 07:53:41 +04002587 raise vimconn.vimconnConnectionException(
2588 "Failed to get a reference of VDC for a tenant {}".format(self.tenant_name))
bayramov325fa1c2016-09-08 01:42:46 -07002589
bayramovfe3f3c92016-10-04 07:53:41 +04002590 vm_info_dict = self.get_vapp_details_rest(vapp_uuid=vim_vm_uuid)
2591 if not vm_info_dict:
bayramovef390722016-09-27 03:34:46 -07002592 self.logger.debug("get_vminstance(): Failed to get vApp name by UUID {}".format(vim_vm_uuid))
bayramovfe3f3c92016-10-04 07:53:41 +04002593 raise vimconn.vimconnNotFoundException("Failed to get vApp name by UUID {}".format(vim_vm_uuid))
bayramov325fa1c2016-09-08 01:42:46 -07002594
bayramovfe3f3c92016-10-04 07:53:41 +04002595 status_key = vm_info_dict['status']
2596 error = ''
bayramovef390722016-09-27 03:34:46 -07002597 try:
bayramovfe3f3c92016-10-04 07:53:41 +04002598 vm_dict = {'created': vm_info_dict['created'],
2599 'description': vm_info_dict['name'],
2600 'status': vcdStatusCode2manoFormat[int(status_key)],
2601 'hostId': vm_info_dict['vmuuid'],
2602 'error_msg': error,
2603 'vim_info': yaml.safe_dump(vm_info_dict), 'interfaces': []}
bayramovef390722016-09-27 03:34:46 -07002604
bayramov5761ad12016-10-04 09:00:30 +04002605 if 'interfaces' in vm_info_dict:
bayramovfe3f3c92016-10-04 07:53:41 +04002606 vm_dict['interfaces'] = vm_info_dict['interfaces']
2607 else:
2608 vm_dict['interfaces'] = []
2609 except KeyError:
2610 vm_dict = {'created': '',
2611 'description': '',
2612 'status': vcdStatusCode2manoFormat[int(-1)],
2613 'hostId': vm_info_dict['vmuuid'],
2614 'error_msg': "Inconsistency state",
2615 'vim_info': yaml.safe_dump(vm_info_dict), 'interfaces': []}
bayramovef390722016-09-27 03:34:46 -07002616
2617 return vm_dict
2618
tierno98e909c2017-10-14 13:27:03 +02002619 def delete_vminstance(self, vm__vim_uuid, created_items=None):
bayramovef390722016-09-27 03:34:46 -07002620 """Method poweroff and remove VM instance from vcloud director network.
2621
2622 Args:
2623 vm__vim_uuid: VM UUID
2624
2625 Returns:
2626 Returns the instance identifier
2627 """
2628
2629 self.logger.debug("Client requesting delete vm instance {} ".format(vm__vim_uuid))
bayramov325fa1c2016-09-08 01:42:46 -07002630
kasarc5bf2932018-03-09 04:15:22 -08002631 org, vdc = self.get_vdc_details()
sbhangarea8e5b782018-06-21 02:10:03 -07002632 vdc_obj = VDC(self.client, href=vdc.get('href'))
kasarc5bf2932018-03-09 04:15:22 -08002633 if vdc_obj is None:
bayramovef390722016-09-27 03:34:46 -07002634 self.logger.debug("delete_vminstance(): Failed to get a reference of VDC for a tenant {}".format(
2635 self.tenant_name))
bayramovbd6160f2016-09-28 04:12:05 +04002636 raise vimconn.vimconnException(
2637 "delete_vminstance(): Failed to get a reference of VDC for a tenant {}".format(self.tenant_name))
bayramov325fa1c2016-09-08 01:42:46 -07002638
bayramovef390722016-09-27 03:34:46 -07002639 try:
kasarc5bf2932018-03-09 04:15:22 -08002640 vapp_name = self.get_namebyvappid(vm__vim_uuid)
2641 vapp_resource = vdc_obj.get_vapp(vapp_name)
2642 vapp = VApp(self.client, resource=vapp_resource)
bayramovef390722016-09-27 03:34:46 -07002643 if vapp_name is None:
2644 self.logger.debug("delete_vminstance(): Failed to get vm by given {} vm uuid".format(vm__vim_uuid))
2645 return -1, "delete_vminstance(): Failed to get vm by given {} vm uuid".format(vm__vim_uuid)
2646 else:
2647 self.logger.info("Deleting vApp {} and UUID {}".format(vapp_name, vm__vim_uuid))
bayramov325fa1c2016-09-08 01:42:46 -07002648
bayramovef390722016-09-27 03:34:46 -07002649 # Delete vApp and wait for status change if task executed and vApp is None.
bayramov325fa1c2016-09-08 01:42:46 -07002650
kate13ab2c42016-12-23 01:34:24 -08002651 if vapp:
kasarc5bf2932018-03-09 04:15:22 -08002652 if vapp_resource.get('deployed') == 'true':
kate13ab2c42016-12-23 01:34:24 -08002653 self.logger.info("Powering off vApp {}".format(vapp_name))
2654 #Power off vApp
2655 powered_off = False
2656 wait_time = 0
2657 while wait_time <= MAX_WAIT_TIME:
kasarc5bf2932018-03-09 04:15:22 -08002658 power_off_task = vapp.power_off()
2659 result = self.client.get_task_monitor().wait_for_success(task=power_off_task)
bayramovef390722016-09-27 03:34:46 -07002660
kasarc5bf2932018-03-09 04:15:22 -08002661 if result.get('status') == 'success':
2662 powered_off = True
2663 break
kate13ab2c42016-12-23 01:34:24 -08002664 else:
2665 self.logger.info("Wait for vApp {} to power off".format(vapp_name))
2666 time.sleep(INTERVAL_TIME)
2667
2668 wait_time +=INTERVAL_TIME
2669 if not powered_off:
2670 self.logger.debug("delete_vminstance(): Failed to power off VM instance {} ".format(vm__vim_uuid))
2671 else:
2672 self.logger.info("delete_vminstance(): Powered off VM instance {} ".format(vm__vim_uuid))
2673
2674 #Undeploy vApp
2675 self.logger.info("Undeploy vApp {}".format(vapp_name))
2676 wait_time = 0
2677 undeployed = False
2678 while wait_time <= MAX_WAIT_TIME:
sbhangarea8e5b782018-06-21 02:10:03 -07002679 vapp = VApp(self.client, resource=vapp_resource)
kate13ab2c42016-12-23 01:34:24 -08002680 if not vapp:
2681 self.logger.debug("delete_vminstance(): Failed to get vm by given {} vm uuid".format(vm__vim_uuid))
2682 return -1, "delete_vminstance(): Failed to get vm by given {} vm uuid".format(vm__vim_uuid)
kasarc5bf2932018-03-09 04:15:22 -08002683 undeploy_task = vapp.undeploy()
kate13ab2c42016-12-23 01:34:24 -08002684
kasarc5bf2932018-03-09 04:15:22 -08002685 result = self.client.get_task_monitor().wait_for_success(task=undeploy_task)
2686 if result.get('status') == 'success':
2687 undeployed = True
2688 break
kate13ab2c42016-12-23 01:34:24 -08002689 else:
2690 self.logger.debug("Wait for vApp {} to undeploy".format(vapp_name))
2691 time.sleep(INTERVAL_TIME)
2692
2693 wait_time +=INTERVAL_TIME
2694
2695 if not undeployed:
sbhangarea8e5b782018-06-21 02:10:03 -07002696 self.logger.debug("delete_vminstance(): Failed to undeploy vApp {} ".format(vm__vim_uuid))
kate13ab2c42016-12-23 01:34:24 -08002697
2698 # delete vapp
2699 self.logger.info("Start deletion of vApp {} ".format(vapp_name))
kate13ab2c42016-12-23 01:34:24 -08002700
2701 if vapp is not None:
2702 wait_time = 0
2703 result = False
2704
2705 while wait_time <= MAX_WAIT_TIME:
kasarc5bf2932018-03-09 04:15:22 -08002706 vapp = VApp(self.client, resource=vapp_resource)
kate13ab2c42016-12-23 01:34:24 -08002707 if not vapp:
2708 self.logger.debug("delete_vminstance(): Failed to get vm by given {} vm uuid".format(vm__vim_uuid))
2709 return -1, "delete_vminstance(): Failed to get vm by given {} vm uuid".format(vm__vim_uuid)
2710
kasarc5bf2932018-03-09 04:15:22 -08002711 delete_task = vdc_obj.delete_vapp(vapp.name, force=True)
kate13ab2c42016-12-23 01:34:24 -08002712
kasarc5bf2932018-03-09 04:15:22 -08002713 result = self.client.get_task_monitor().wait_for_success(task=delete_task)
sbhangarea8e5b782018-06-21 02:10:03 -07002714 if result.get('status') == 'success':
kasarc5bf2932018-03-09 04:15:22 -08002715 break
kate13ab2c42016-12-23 01:34:24 -08002716 else:
2717 self.logger.debug("Wait for vApp {} to delete".format(vapp_name))
2718 time.sleep(INTERVAL_TIME)
2719
2720 wait_time +=INTERVAL_TIME
2721
kasarc5bf2932018-03-09 04:15:22 -08002722 if result is None:
bayramovbd6160f2016-09-28 04:12:05 +04002723 self.logger.debug("delete_vminstance(): Failed delete uuid {} ".format(vm__vim_uuid))
kasarc5bf2932018-03-09 04:15:22 -08002724 else:
2725 self.logger.info("Deleted vm instance {} sccessfully".format(vm__vim_uuid))
2726 return vm__vim_uuid
bayramovef390722016-09-27 03:34:46 -07002727 except:
2728 self.logger.debug(traceback.format_exc())
bayramovbd6160f2016-09-28 04:12:05 +04002729 raise vimconn.vimconnException("delete_vminstance(): Failed delete vm instance {}".format(vm__vim_uuid))
bayramovef390722016-09-27 03:34:46 -07002730
bayramov325fa1c2016-09-08 01:42:46 -07002731
2732 def refresh_vms_status(self, vm_list):
bayramovef390722016-09-27 03:34:46 -07002733 """Get the status of the virtual machines and their interfaces/ports
bayramov325fa1c2016-09-08 01:42:46 -07002734 Params: the list of VM identifiers
2735 Returns a dictionary with:
2736 vm_id: #VIM id of this Virtual Machine
2737 status: #Mandatory. Text with one of:
2738 # DELETED (not found at vim)
bayramovef390722016-09-27 03:34:46 -07002739 # VIM_ERROR (Cannot connect to VIM, VIM response error, ...)
bayramov325fa1c2016-09-08 01:42:46 -07002740 # OTHER (Vim reported other status not understood)
2741 # ERROR (VIM indicates an ERROR status)
bayramovef390722016-09-27 03:34:46 -07002742 # ACTIVE, PAUSED, SUSPENDED, INACTIVE (not running),
bayramov325fa1c2016-09-08 01:42:46 -07002743 # CREATING (on building process), ERROR
2744 # ACTIVE:NoMgmtIP (Active but any of its interface has an IP address
2745 #
bayramovef390722016-09-27 03:34:46 -07002746 error_msg: #Text with VIM error message, if any. Or the VIM connection ERROR
bayramov325fa1c2016-09-08 01:42:46 -07002747 vim_info: #Text with plain information obtained from vim (yaml.safe_dump)
2748 interfaces:
2749 - vim_info: #Text with plain information obtained from vim (yaml.safe_dump)
2750 mac_address: #Text format XX:XX:XX:XX:XX:XX
2751 vim_net_id: #network id where this interface is connected
2752 vim_interface_id: #interface/port VIM id
2753 ip_address: #null, or text with IPv4, IPv6 address
bayramovef390722016-09-27 03:34:46 -07002754 """
bayramov325fa1c2016-09-08 01:42:46 -07002755
bayramovef390722016-09-27 03:34:46 -07002756 self.logger.debug("Client requesting refresh vm status for {} ".format(vm_list))
bhangare985a1fd2017-01-31 01:53:21 -08002757
kasarc5bf2932018-03-09 04:15:22 -08002758 org,vdc = self.get_vdc_details()
bayramovef390722016-09-27 03:34:46 -07002759 if vdc is None:
bayramovbd6160f2016-09-28 04:12:05 +04002760 raise vimconn.vimconnException("Failed to get a reference of VDC for a tenant {}".format(self.tenant_name))
bayramovef390722016-09-27 03:34:46 -07002761
2762 vms_dict = {}
kasarde691232017-03-25 03:37:31 -07002763 nsx_edge_list = []
bayramovef390722016-09-27 03:34:46 -07002764 for vmuuid in vm_list:
kasarc5bf2932018-03-09 04:15:22 -08002765 vapp_name = self.get_namebyvappid(vmuuid)
2766 if vapp_name is not None:
bayramovef390722016-09-27 03:34:46 -07002767
bayramovef390722016-09-27 03:34:46 -07002768 try:
bhangare1a0b97c2017-06-21 02:20:15 -07002769 vm_pci_details = self.get_vm_pci_details(vmuuid)
kasarc5bf2932018-03-09 04:15:22 -08002770 vdc_obj = VDC(self.client, href=vdc.get('href'))
2771 vapp_resource = vdc_obj.get_vapp(vapp_name)
2772 the_vapp = VApp(self.client, resource=vapp_resource)
bhangarebfdca492017-03-11 01:32:46 -08002773
kasarc5bf2932018-03-09 04:15:22 -08002774 vm_details = {}
2775 for vm in the_vapp.get_all_vms():
2776 headers = {'Accept':'application/*+xml;version=' + API_VERSION,
sbhangarea8e5b782018-06-21 02:10:03 -07002777 'x-vcloud-authorization': self.client._session.headers['x-vcloud-authorization']}
kasarc5bf2932018-03-09 04:15:22 -08002778 response = self.perform_request(req_type='GET',
2779 url=vm.get('href'),
2780 headers=headers)
bhangarebfdca492017-03-11 01:32:46 -08002781
kasarc5bf2932018-03-09 04:15:22 -08002782 if response.status_code != 200:
2783 self.logger.error("refresh_vms_status : REST call {} failed reason : {}"\
2784 "status code : {}".format(vm.get('href'),
2785 response.content,
2786 response.status_code))
2787 raise vimconn.vimconnException("refresh_vms_status : Failed to get "\
2788 "VM details")
2789 xmlroot = XmlElementTree.fromstring(response.content)
kasarde691232017-03-25 03:37:31 -07002790
Ravi Chamartyb9b77462018-10-07 15:45:44 +00002791
kasarc5bf2932018-03-09 04:15:22 -08002792 result = response.content.replace("\n"," ")
Ravi Chamartyb9b77462018-10-07 15:45:44 +00002793 hdd_match = re.search('vcloud:capacity="(\d+)"\svcloud:storageProfileOverrideVmDefault=',result)
2794 if hdd_match:
2795 hdd_mb = hdd_match.group(1)
2796 vm_details['hdd_mb'] = int(hdd_mb) if hdd_mb else None
2797 cpus_match = re.search('<rasd:Description>Number of Virtual CPUs</.*?>(\d+)</rasd:VirtualQuantity>',result)
2798 if cpus_match:
2799 cpus = cpus_match.group(1)
2800 vm_details['cpus'] = int(cpus) if cpus else None
kasarc5bf2932018-03-09 04:15:22 -08002801 memory_mb = re.search('<rasd:Description>Memory Size</.*?>(\d+)</rasd:VirtualQuantity>',result).group(1)
2802 vm_details['memory_mb'] = int(memory_mb) if memory_mb else None
2803 vm_details['status'] = vcdStatusCode2manoFormat[int(xmlroot.get('status'))]
2804 vm_details['id'] = xmlroot.get('id')
2805 vm_details['name'] = xmlroot.get('name')
2806 vm_info = [vm_details]
2807 if vm_pci_details:
sbhangarea8e5b782018-06-21 02:10:03 -07002808 vm_info[0].update(vm_pci_details)
kasarc5bf2932018-03-09 04:15:22 -08002809
2810 vm_dict = {'status': vcdStatusCode2manoFormat[int(vapp_resource.get('status'))],
2811 'error_msg': vcdStatusCode2manoFormat[int(vapp_resource.get('status'))],
2812 'vim_info': yaml.safe_dump(vm_info), 'interfaces': []}
2813
2814 # get networks
sbhangarea8e5b782018-06-21 02:10:03 -07002815 vm_ip = None
kasar1b7b9522018-05-15 06:15:07 -07002816 vm_mac = None
2817 networks = re.findall('<NetworkConnection needsCustomization=.*?</NetworkConnection>',result)
2818 for network in networks:
2819 mac_s = re.search('<MACAddress>(.*?)</MACAddress>',network)
2820 vm_mac = mac_s.group(1) if mac_s else None
2821 ip_s = re.search('<IpAddress>(.*?)</IpAddress>',network)
2822 vm_ip = ip_s.group(1) if ip_s else None
kasarc5bf2932018-03-09 04:15:22 -08002823
kasar1b7b9522018-05-15 06:15:07 -07002824 if vm_ip is None:
2825 if not nsx_edge_list:
2826 nsx_edge_list = self.get_edge_details()
2827 if nsx_edge_list is None:
2828 raise vimconn.vimconnException("refresh_vms_status:"\
2829 "Failed to get edge details from NSX Manager")
2830 if vm_mac is not None:
2831 vm_ip = self.get_ipaddr_from_NSXedge(nsx_edge_list, vm_mac)
kasarc5bf2932018-03-09 04:15:22 -08002832
kasarabac1e22018-05-17 02:44:39 -07002833 net_s = re.search('network="(.*?)"',network)
2834 network_name = net_s.group(1) if net_s else None
2835
kasar1b7b9522018-05-15 06:15:07 -07002836 vm_net_id = self.get_network_id_by_name(network_name)
2837 interface = {"mac_address": vm_mac,
2838 "vim_net_id": vm_net_id,
2839 "vim_interface_id": vm_net_id,
2840 "ip_address": vm_ip}
2841
2842 vm_dict["interfaces"].append(interface)
kasarc5bf2932018-03-09 04:15:22 -08002843
bayramovef390722016-09-27 03:34:46 -07002844 # add a vm to vm dict
2845 vms_dict.setdefault(vmuuid, vm_dict)
kasarc5bf2932018-03-09 04:15:22 -08002846 self.logger.debug("refresh_vms_status : vm info {}".format(vm_dict))
bhangarebfdca492017-03-11 01:32:46 -08002847 except Exception as exp:
2848 self.logger.debug("Error in response {}".format(exp))
bayramovef390722016-09-27 03:34:46 -07002849 self.logger.debug(traceback.format_exc())
2850
2851 return vms_dict
2852
kasarde691232017-03-25 03:37:31 -07002853
2854 def get_edge_details(self):
2855 """Get the NSX edge list from NSX Manager
2856 Returns list of NSX edges
2857 """
2858 edge_list = []
2859 rheaders = {'Content-Type': 'application/xml'}
2860 nsx_api_url = '/api/4.0/edges'
2861
2862 self.logger.debug("Get edge details from NSX Manager {} {}".format(self.nsx_manager, nsx_api_url))
2863
2864 try:
2865 resp = requests.get(self.nsx_manager + nsx_api_url,
2866 auth = (self.nsx_user, self.nsx_password),
2867 verify = False, headers = rheaders)
2868 if resp.status_code == requests.codes.ok:
2869 paged_Edge_List = XmlElementTree.fromstring(resp.text)
2870 for edge_pages in paged_Edge_List:
2871 if edge_pages.tag == 'edgePage':
2872 for edge_summary in edge_pages:
2873 if edge_summary.tag == 'pagingInfo':
2874 for element in edge_summary:
2875 if element.tag == 'totalCount' and element.text == '0':
2876 raise vimconn.vimconnException("get_edge_details: No NSX edges details found: {}"
2877 .format(self.nsx_manager))
2878
2879 if edge_summary.tag == 'edgeSummary':
2880 for element in edge_summary:
2881 if element.tag == 'id':
2882 edge_list.append(element.text)
2883 else:
2884 raise vimconn.vimconnException("get_edge_details: No NSX edge details found: {}"
2885 .format(self.nsx_manager))
2886
2887 if not edge_list:
2888 raise vimconn.vimconnException("get_edge_details: "\
2889 "No NSX edge details found: {}"
2890 .format(self.nsx_manager))
2891 else:
2892 self.logger.debug("get_edge_details: Found NSX edges {}".format(edge_list))
2893 return edge_list
2894 else:
2895 self.logger.debug("get_edge_details: "
2896 "Failed to get NSX edge details from NSX Manager: {}"
2897 .format(resp.content))
2898 return None
2899
2900 except Exception as exp:
2901 self.logger.debug("get_edge_details: "\
2902 "Failed to get NSX edge details from NSX Manager: {}"
2903 .format(exp))
2904 raise vimconn.vimconnException("get_edge_details: "\
2905 "Failed to get NSX edge details from NSX Manager: {}"
2906 .format(exp))
2907
2908
2909 def get_ipaddr_from_NSXedge(self, nsx_edges, mac_address):
2910 """Get IP address details from NSX edges, using the MAC address
2911 PARAMS: nsx_edges : List of NSX edges
2912 mac_address : Find IP address corresponding to this MAC address
2913 Returns: IP address corrresponding to the provided MAC address
2914 """
2915
2916 ip_addr = None
2917 rheaders = {'Content-Type': 'application/xml'}
2918
2919 self.logger.debug("get_ipaddr_from_NSXedge: Finding IP addr from NSX edge")
2920
2921 try:
2922 for edge in nsx_edges:
2923 nsx_api_url = '/api/4.0/edges/'+ edge +'/dhcp/leaseInfo'
2924
2925 resp = requests.get(self.nsx_manager + nsx_api_url,
2926 auth = (self.nsx_user, self.nsx_password),
2927 verify = False, headers = rheaders)
2928
2929 if resp.status_code == requests.codes.ok:
2930 dhcp_leases = XmlElementTree.fromstring(resp.text)
2931 for child in dhcp_leases:
2932 if child.tag == 'dhcpLeaseInfo':
2933 dhcpLeaseInfo = child
2934 for leaseInfo in dhcpLeaseInfo:
2935 for elem in leaseInfo:
2936 if (elem.tag)=='macAddress':
2937 edge_mac_addr = elem.text
2938 if (elem.tag)=='ipAddress':
2939 ip_addr = elem.text
2940 if edge_mac_addr is not None:
2941 if edge_mac_addr == mac_address:
2942 self.logger.debug("Found ip addr {} for mac {} at NSX edge {}"
2943 .format(ip_addr, mac_address,edge))
2944 return ip_addr
2945 else:
2946 self.logger.debug("get_ipaddr_from_NSXedge: "\
2947 "Error occurred while getting DHCP lease info from NSX Manager: {}"
2948 .format(resp.content))
2949
2950 self.logger.debug("get_ipaddr_from_NSXedge: No IP addr found in any NSX edge")
2951 return None
2952
2953 except XmlElementTree.ParseError as Err:
2954 self.logger.debug("ParseError in response from NSX Manager {}".format(Err.message), exc_info=True)
2955
2956
tierno98e909c2017-10-14 13:27:03 +02002957 def action_vminstance(self, vm__vim_uuid=None, action_dict=None, created_items={}):
bayramovef390722016-09-27 03:34:46 -07002958 """Send and action over a VM instance from VIM
2959 Returns the vm_id if the action was successfully sent to the VIM"""
2960
2961 self.logger.debug("Received action for vm {} and action dict {}".format(vm__vim_uuid, action_dict))
2962 if vm__vim_uuid is None or action_dict is None:
bayramovbd6160f2016-09-28 04:12:05 +04002963 raise vimconn.vimconnException("Invalid request. VM id or action is None.")
bayramovef390722016-09-27 03:34:46 -07002964
kasarc5bf2932018-03-09 04:15:22 -08002965 org, vdc = self.get_vdc_details()
bayramovef390722016-09-27 03:34:46 -07002966 if vdc is None:
tierno98e909c2017-10-14 13:27:03 +02002967 raise vimconn.vimconnException("Failed to get a reference of VDC for a tenant {}".format(self.tenant_name))
bayramovef390722016-09-27 03:34:46 -07002968
kasarc5bf2932018-03-09 04:15:22 -08002969 vapp_name = self.get_namebyvappid(vm__vim_uuid)
bayramovef390722016-09-27 03:34:46 -07002970 if vapp_name is None:
2971 self.logger.debug("action_vminstance(): Failed to get vm by given {} vm uuid".format(vm__vim_uuid))
bayramovbd6160f2016-09-28 04:12:05 +04002972 raise vimconn.vimconnException("Failed to get vm by given {} vm uuid".format(vm__vim_uuid))
bayramovef390722016-09-27 03:34:46 -07002973 else:
2974 self.logger.info("Action_vminstance vApp {} and UUID {}".format(vapp_name, vm__vim_uuid))
2975
2976 try:
kasarc5bf2932018-03-09 04:15:22 -08002977 vdc_obj = VDC(self.client, href=vdc.get('href'))
2978 vapp_resource = vdc_obj.get_vapp(vapp_name)
sbhangarea8e5b782018-06-21 02:10:03 -07002979 vapp = VApp(self.client, resource=vapp_resource)
bayramovef390722016-09-27 03:34:46 -07002980 if "start" in action_dict:
kasar3ac5dc42017-03-15 06:28:22 -07002981 self.logger.info("action_vminstance: Power on vApp: {}".format(vapp_name))
sbhangarea8e5b782018-06-21 02:10:03 -07002982 poweron_task = self.power_on_vapp(vm__vim_uuid, vapp_name)
2983 result = self.client.get_task_monitor().wait_for_success(task=poweron_task)
kasarc5bf2932018-03-09 04:15:22 -08002984 self.instance_actions_result("start", result, vapp_name)
kasar3ac5dc42017-03-15 06:28:22 -07002985 elif "rebuild" in action_dict:
2986 self.logger.info("action_vminstance: Rebuild vApp: {}".format(vapp_name))
kasarc5bf2932018-03-09 04:15:22 -08002987 rebuild_task = vapp.deploy(power_on=True)
sbhangarea8e5b782018-06-21 02:10:03 -07002988 result = self.client.get_task_monitor().wait_for_success(task=rebuild_task)
kasar3ac5dc42017-03-15 06:28:22 -07002989 self.instance_actions_result("rebuild", result, vapp_name)
bayramovef390722016-09-27 03:34:46 -07002990 elif "pause" in action_dict:
kasar3ac5dc42017-03-15 06:28:22 -07002991 self.logger.info("action_vminstance: pause vApp: {}".format(vapp_name))
kasarc5bf2932018-03-09 04:15:22 -08002992 pause_task = vapp.undeploy(action='suspend')
sbhangarea8e5b782018-06-21 02:10:03 -07002993 result = self.client.get_task_monitor().wait_for_success(task=pause_task)
kasar3ac5dc42017-03-15 06:28:22 -07002994 self.instance_actions_result("pause", result, vapp_name)
bayramovef390722016-09-27 03:34:46 -07002995 elif "resume" in action_dict:
kasar3ac5dc42017-03-15 06:28:22 -07002996 self.logger.info("action_vminstance: resume vApp: {}".format(vapp_name))
kasarc5bf2932018-03-09 04:15:22 -08002997 poweron_task = self.power_on_vapp(vm__vim_uuid, vapp_name)
2998 result = self.client.get_task_monitor().wait_for_success(task=poweron_task)
kasar3ac5dc42017-03-15 06:28:22 -07002999 self.instance_actions_result("resume", result, vapp_name)
bayramovef390722016-09-27 03:34:46 -07003000 elif "shutoff" in action_dict or "shutdown" in action_dict:
kasar3ac5dc42017-03-15 06:28:22 -07003001 action_name , value = action_dict.items()[0]
kasarc5bf2932018-03-09 04:15:22 -08003002 #For python3
3003 #action_name , value = list(action_dict.items())[0]
kasar3ac5dc42017-03-15 06:28:22 -07003004 self.logger.info("action_vminstance: {} vApp: {}".format(action_name, vapp_name))
kasarc5bf2932018-03-09 04:15:22 -08003005 shutdown_task = vapp.shutdown()
3006 result = self.client.get_task_monitor().wait_for_success(task=shutdown_task)
kasar3ac5dc42017-03-15 06:28:22 -07003007 if action_name == "shutdown":
3008 self.instance_actions_result("shutdown", result, vapp_name)
bhangare985a1fd2017-01-31 01:53:21 -08003009 else:
kasar3ac5dc42017-03-15 06:28:22 -07003010 self.instance_actions_result("shutoff", result, vapp_name)
bayramovef390722016-09-27 03:34:46 -07003011 elif "forceOff" in action_dict:
kasarc5bf2932018-03-09 04:15:22 -08003012 result = vapp.undeploy(action='powerOff')
kasar3ac5dc42017-03-15 06:28:22 -07003013 self.instance_actions_result("forceOff", result, vapp_name)
3014 elif "reboot" in action_dict:
3015 self.logger.info("action_vminstance: reboot vApp: {}".format(vapp_name))
kasarc5bf2932018-03-09 04:15:22 -08003016 reboot_task = vapp.reboot()
sbhangarea8e5b782018-06-21 02:10:03 -07003017 self.client.get_task_monitor().wait_for_success(task=reboot_task)
bayramovef390722016-09-27 03:34:46 -07003018 else:
kasar3ac5dc42017-03-15 06:28:22 -07003019 raise vimconn.vimconnException("action_vminstance: Invalid action {} or action is None.".format(action_dict))
kasarc5bf2932018-03-09 04:15:22 -08003020 return vm__vim_uuid
bhangarebfdca492017-03-11 01:32:46 -08003021 except Exception as exp :
3022 self.logger.debug("action_vminstance: Failed with Exception {}".format(exp))
3023 raise vimconn.vimconnException("action_vminstance: Failed with Exception {}".format(exp))
bayramovef390722016-09-27 03:34:46 -07003024
kasar3ac5dc42017-03-15 06:28:22 -07003025 def instance_actions_result(self, action, result, vapp_name):
kasarc5bf2932018-03-09 04:15:22 -08003026 if result.get('status') == 'success':
kasar3ac5dc42017-03-15 06:28:22 -07003027 self.logger.info("action_vminstance: Sucessfully {} the vApp: {}".format(action, vapp_name))
3028 else:
3029 self.logger.error("action_vminstance: Failed to {} vApp: {}".format(action, vapp_name))
3030
bayramovef390722016-09-27 03:34:46 -07003031 def get_vminstance_console(self, vm_id, console_type="vnc"):
3032 """
bayramov325fa1c2016-09-08 01:42:46 -07003033 Get a console for the virtual machine
3034 Params:
3035 vm_id: uuid of the VM
3036 console_type, can be:
bayramovef390722016-09-27 03:34:46 -07003037 "novnc" (by default), "xvpvnc" for VNC types,
bayramov325fa1c2016-09-08 01:42:46 -07003038 "rdp-html5" for RDP types, "spice-html5" for SPICE types
3039 Returns dict with the console parameters:
3040 protocol: ssh, ftp, http, https, ...
bayramovef390722016-09-27 03:34:46 -07003041 server: usually ip address
3042 port: the http, ssh, ... port
3043 suffix: extra text, e.g. the http path and query string
3044 """
bayramovbd6160f2016-09-28 04:12:05 +04003045 raise vimconn.vimconnNotImplemented("Should have implemented this")
bayramov325fa1c2016-09-08 01:42:46 -07003046
bayramovef390722016-09-27 03:34:46 -07003047 # NOT USED METHODS in current version
bayramov325fa1c2016-09-08 01:42:46 -07003048
3049 def host_vim2gui(self, host, server_dict):
bayramov5761ad12016-10-04 09:00:30 +04003050 """Transform host dictionary from VIM format to GUI format,
bayramov325fa1c2016-09-08 01:42:46 -07003051 and append to the server_dict
bayramov5761ad12016-10-04 09:00:30 +04003052 """
bayramovbd6160f2016-09-28 04:12:05 +04003053 raise vimconn.vimconnNotImplemented("Should have implemented this")
bayramov325fa1c2016-09-08 01:42:46 -07003054
3055 def get_hosts_info(self):
bayramov5761ad12016-10-04 09:00:30 +04003056 """Get the information of deployed hosts
3057 Returns the hosts content"""
bayramovbd6160f2016-09-28 04:12:05 +04003058 raise vimconn.vimconnNotImplemented("Should have implemented this")
bayramov325fa1c2016-09-08 01:42:46 -07003059
3060 def get_hosts(self, vim_tenant):
bayramov5761ad12016-10-04 09:00:30 +04003061 """Get the hosts and deployed instances
3062 Returns the hosts content"""
bayramovbd6160f2016-09-28 04:12:05 +04003063 raise vimconn.vimconnNotImplemented("Should have implemented this")
bayramov325fa1c2016-09-08 01:42:46 -07003064
3065 def get_processor_rankings(self):
bayramov5761ad12016-10-04 09:00:30 +04003066 """Get the processor rankings in the VIM database"""
bayramovbd6160f2016-09-28 04:12:05 +04003067 raise vimconn.vimconnNotImplemented("Should have implemented this")
bayramov325fa1c2016-09-08 01:42:46 -07003068
3069 def new_host(self, host_data):
bayramov5761ad12016-10-04 09:00:30 +04003070 """Adds a new host to VIM"""
bayramov325fa1c2016-09-08 01:42:46 -07003071 '''Returns status code of the VIM response'''
bayramovbd6160f2016-09-28 04:12:05 +04003072 raise vimconn.vimconnNotImplemented("Should have implemented this")
bayramov325fa1c2016-09-08 01:42:46 -07003073
3074 def new_external_port(self, port_data):
bayramov5761ad12016-10-04 09:00:30 +04003075 """Adds a external port to VIM"""
bayramov325fa1c2016-09-08 01:42:46 -07003076 '''Returns the port identifier'''
bayramovbd6160f2016-09-28 04:12:05 +04003077 raise vimconn.vimconnNotImplemented("Should have implemented this")
bayramov325fa1c2016-09-08 01:42:46 -07003078
bayramovef390722016-09-27 03:34:46 -07003079 def new_external_network(self, net_name, net_type):
bayramov5761ad12016-10-04 09:00:30 +04003080 """Adds a external network to VIM (shared)"""
bayramov325fa1c2016-09-08 01:42:46 -07003081 '''Returns the network identifier'''
bayramovbd6160f2016-09-28 04:12:05 +04003082 raise vimconn.vimconnNotImplemented("Should have implemented this")
bayramov325fa1c2016-09-08 01:42:46 -07003083
3084 def connect_port_network(self, port_id, network_id, admin=False):
bayramov5761ad12016-10-04 09:00:30 +04003085 """Connects a external port to a network"""
bayramov325fa1c2016-09-08 01:42:46 -07003086 '''Returns status code of the VIM response'''
bayramovbd6160f2016-09-28 04:12:05 +04003087 raise vimconn.vimconnNotImplemented("Should have implemented this")
bayramov325fa1c2016-09-08 01:42:46 -07003088
3089 def new_vminstancefromJSON(self, vm_data):
bayramov5761ad12016-10-04 09:00:30 +04003090 """Adds a VM instance to VIM"""
bayramov325fa1c2016-09-08 01:42:46 -07003091 '''Returns the instance identifier'''
bayramovbd6160f2016-09-28 04:12:05 +04003092 raise vimconn.vimconnNotImplemented("Should have implemented this")
bayramov325fa1c2016-09-08 01:42:46 -07003093
kate15f1c382016-12-15 01:12:40 -08003094 def get_network_name_by_id(self, network_uuid=None):
bayramovef390722016-09-27 03:34:46 -07003095 """Method gets vcloud director network named based on supplied uuid.
3096
3097 Args:
kate15f1c382016-12-15 01:12:40 -08003098 network_uuid: network_id
bayramovef390722016-09-27 03:34:46 -07003099
3100 Returns:
3101 The return network name.
3102 """
3103
kate15f1c382016-12-15 01:12:40 -08003104 if not network_uuid:
bayramovef390722016-09-27 03:34:46 -07003105 return None
3106
3107 try:
kate15f1c382016-12-15 01:12:40 -08003108 org_dict = self.get_org(self.org_uuid)
3109 if 'networks' in org_dict:
3110 org_network_dict = org_dict['networks']
3111 for net_uuid in org_network_dict:
3112 if net_uuid == network_uuid:
3113 return org_network_dict[net_uuid]
bayramovef390722016-09-27 03:34:46 -07003114 except:
3115 self.logger.debug("Exception in get_network_name_by_id")
3116 self.logger.debug(traceback.format_exc())
3117
3118 return None
3119
bhangare2c855072016-12-27 01:41:28 -08003120 def get_network_id_by_name(self, network_name=None):
3121 """Method gets vcloud director network uuid based on supplied name.
3122
3123 Args:
3124 network_name: network_name
3125 Returns:
3126 The return network uuid.
3127 network_uuid: network_id
3128 """
3129
bhangare2c855072016-12-27 01:41:28 -08003130 if not network_name:
3131 self.logger.debug("get_network_id_by_name() : Network name is empty")
3132 return None
3133
3134 try:
3135 org_dict = self.get_org(self.org_uuid)
3136 if org_dict and 'networks' in org_dict:
3137 org_network_dict = org_dict['networks']
3138 for net_uuid,net_name in org_network_dict.iteritems():
kasarc5bf2932018-03-09 04:15:22 -08003139 #For python3
3140 #for net_uuid,net_name in org_network_dict.items():
bhangare2c855072016-12-27 01:41:28 -08003141 if net_name == network_name:
3142 return net_uuid
3143
3144 except KeyError as exp:
3145 self.logger.debug("get_network_id_by_name() : KeyError- {} ".format(exp))
3146
3147 return None
3148
bayramovef390722016-09-27 03:34:46 -07003149 def list_org_action(self):
3150 """
3151 Method leverages vCloud director and query for available organization for particular user
3152
3153 Args:
3154 vca - is active VCA connection.
3155 vdc_name - is a vdc name that will be used to query vms action
3156
3157 Returns:
3158 The return XML respond
3159 """
kasarc5bf2932018-03-09 04:15:22 -08003160 url_list = [self.url, '/api/org']
bayramovef390722016-09-27 03:34:46 -07003161 vm_list_rest_call = ''.join(url_list)
3162
kasarc5bf2932018-03-09 04:15:22 -08003163 if self.client._session:
3164 headers = {'Accept':'application/*+xml;version=' + API_VERSION,
3165 'x-vcloud-authorization': self.client._session.headers['x-vcloud-authorization']}
3166
3167 response = self.perform_request(req_type='GET',
3168 url=vm_list_rest_call,
3169 headers=headers)
bhangare1a0b97c2017-06-21 02:20:15 -07003170
3171 if response.status_code == 403:
3172 response = self.retry_rest('GET', vm_list_rest_call)
3173
bayramovef390722016-09-27 03:34:46 -07003174 if response.status_code == requests.codes.ok:
3175 return response.content
3176
3177 return None
3178
3179 def get_org_action(self, org_uuid=None):
3180 """
kasarc5bf2932018-03-09 04:15:22 -08003181 Method leverages vCloud director and retrieve available object for organization.
bayramovef390722016-09-27 03:34:46 -07003182
3183 Args:
kasarc5bf2932018-03-09 04:15:22 -08003184 org_uuid - vCD organization uuid
3185 self.client - is active connection.
bayramovef390722016-09-27 03:34:46 -07003186
3187 Returns:
3188 The return XML respond
3189 """
3190
bayramovef390722016-09-27 03:34:46 -07003191 if org_uuid is None:
3192 return None
3193
kasarc5bf2932018-03-09 04:15:22 -08003194 url_list = [self.url, '/api/org/', org_uuid]
bayramovef390722016-09-27 03:34:46 -07003195 vm_list_rest_call = ''.join(url_list)
3196
sbhangarea8e5b782018-06-21 02:10:03 -07003197 if self.client._session:
kasarc5bf2932018-03-09 04:15:22 -08003198 headers = {'Accept':'application/*+xml;version=' + API_VERSION,
sbhangarea8e5b782018-06-21 02:10:03 -07003199 'x-vcloud-authorization': self.client._session.headers['x-vcloud-authorization']}
bhangare1a0b97c2017-06-21 02:20:15 -07003200
kasarc5bf2932018-03-09 04:15:22 -08003201 #response = requests.get(vm_list_rest_call, headers=headers, verify=False)
3202 response = self.perform_request(req_type='GET',
3203 url=vm_list_rest_call,
3204 headers=headers)
bhangare1a0b97c2017-06-21 02:20:15 -07003205 if response.status_code == 403:
3206 response = self.retry_rest('GET', vm_list_rest_call)
3207
bayramovef390722016-09-27 03:34:46 -07003208 if response.status_code == requests.codes.ok:
sbhangarea8e5b782018-06-21 02:10:03 -07003209 return response.content
bayramovef390722016-09-27 03:34:46 -07003210 return None
3211
3212 def get_org(self, org_uuid=None):
3213 """
3214 Method retrieves available organization in vCloud Director
3215
3216 Args:
bayramovb6ffe792016-09-28 11:50:56 +04003217 org_uuid - is a organization uuid.
bayramovef390722016-09-27 03:34:46 -07003218
3219 Returns:
bayramovb6ffe792016-09-28 11:50:56 +04003220 The return dictionary with following key
3221 "network" - for network list under the org
3222 "catalogs" - for network list under the org
3223 "vdcs" - for vdc list under org
bayramovef390722016-09-27 03:34:46 -07003224 """
3225
3226 org_dict = {}
bayramovef390722016-09-27 03:34:46 -07003227
3228 if org_uuid is None:
3229 return org_dict
3230
3231 content = self.get_org_action(org_uuid=org_uuid)
3232 try:
3233 vdc_list = {}
3234 network_list = {}
3235 catalog_list = {}
3236 vm_list_xmlroot = XmlElementTree.fromstring(content)
3237 for child in vm_list_xmlroot:
3238 if child.attrib['type'] == 'application/vnd.vmware.vcloud.vdc+xml':
3239 vdc_list[child.attrib['href'].split("/")[-1:][0]] = child.attrib['name']
3240 org_dict['vdcs'] = vdc_list
3241 if child.attrib['type'] == 'application/vnd.vmware.vcloud.orgNetwork+xml':
3242 network_list[child.attrib['href'].split("/")[-1:][0]] = child.attrib['name']
3243 org_dict['networks'] = network_list
3244 if child.attrib['type'] == 'application/vnd.vmware.vcloud.catalog+xml':
3245 catalog_list[child.attrib['href'].split("/")[-1:][0]] = child.attrib['name']
3246 org_dict['catalogs'] = catalog_list
3247 except:
3248 pass
3249
3250 return org_dict
3251
3252 def get_org_list(self):
3253 """
3254 Method retrieves available organization in vCloud Director
3255
3256 Args:
3257 vca - is active VCA connection.
3258
3259 Returns:
3260 The return dictionary and key for each entry VDC UUID
3261 """
3262
3263 org_dict = {}
bayramovef390722016-09-27 03:34:46 -07003264
3265 content = self.list_org_action()
3266 try:
3267 vm_list_xmlroot = XmlElementTree.fromstring(content)
3268 for vm_xml in vm_list_xmlroot:
3269 if vm_xml.tag.split("}")[1] == 'Org':
3270 org_uuid = vm_xml.attrib['href'].split('/')[-1:]
3271 org_dict[org_uuid[0]] = vm_xml.attrib['name']
3272 except:
3273 pass
3274
3275 return org_dict
3276
3277 def vms_view_action(self, vdc_name=None):
3278 """ Method leverages vCloud director vms query call
3279
3280 Args:
3281 vca - is active VCA connection.
3282 vdc_name - is a vdc name that will be used to query vms action
3283
3284 Returns:
3285 The return XML respond
3286 """
3287 vca = self.connect()
3288 if vdc_name is None:
3289 return None
3290
3291 url_list = [vca.host, '/api/vms/query']
3292 vm_list_rest_call = ''.join(url_list)
3293
3294 if not (not vca.vcloud_session or not vca.vcloud_session.organization):
3295 refs = filter(lambda ref: ref.name == vdc_name and ref.type_ == 'application/vnd.vmware.vcloud.vdc+xml',
3296 vca.vcloud_session.organization.Link)
kasarc5bf2932018-03-09 04:15:22 -08003297 #For python3
3298 #refs = [ref for ref in vca.vcloud_session.organization.Link if ref.name == vdc_name and\
3299 # ref.type_ == 'application/vnd.vmware.vcloud.vdc+xml']
bayramovef390722016-09-27 03:34:46 -07003300 if len(refs) == 1:
3301 response = Http.get(url=vm_list_rest_call,
3302 headers=vca.vcloud_session.get_vcloud_headers(),
3303 verify=vca.verify,
3304 logger=vca.logger)
3305 if response.status_code == requests.codes.ok:
3306 return response.content
3307
3308 return None
3309
3310 def get_vapp_list(self, vdc_name=None):
3311 """
3312 Method retrieves vApp list deployed vCloud director and returns a dictionary
3313 contains a list of all vapp deployed for queried VDC.
3314 The key for a dictionary is vApp UUID
3315
3316
3317 Args:
3318 vca - is active VCA connection.
3319 vdc_name - is a vdc name that will be used to query vms action
3320
3321 Returns:
3322 The return dictionary and key for each entry vapp UUID
3323 """
3324
3325 vapp_dict = {}
3326 if vdc_name is None:
3327 return vapp_dict
3328
3329 content = self.vms_view_action(vdc_name=vdc_name)
3330 try:
3331 vm_list_xmlroot = XmlElementTree.fromstring(content)
3332 for vm_xml in vm_list_xmlroot:
3333 if vm_xml.tag.split("}")[1] == 'VMRecord':
3334 if vm_xml.attrib['isVAppTemplate'] == 'true':
3335 rawuuid = vm_xml.attrib['container'].split('/')[-1:]
3336 if 'vappTemplate-' in rawuuid[0]:
3337 # vm in format vappTemplate-e63d40e7-4ff5-4c6d-851f-96c1e4da86a5 we remove
3338 # vm and use raw UUID as key
3339 vapp_dict[rawuuid[0][13:]] = vm_xml.attrib
3340 except:
3341 pass
3342
3343 return vapp_dict
3344
3345 def get_vm_list(self, vdc_name=None):
3346 """
3347 Method retrieves VM's list deployed vCloud director. It returns a dictionary
3348 contains a list of all VM's deployed for queried VDC.
3349 The key for a dictionary is VM UUID
3350
3351
3352 Args:
3353 vca - is active VCA connection.
3354 vdc_name - is a vdc name that will be used to query vms action
3355
3356 Returns:
3357 The return dictionary and key for each entry vapp UUID
3358 """
3359 vm_dict = {}
3360
3361 if vdc_name is None:
3362 return vm_dict
3363
3364 content = self.vms_view_action(vdc_name=vdc_name)
3365 try:
3366 vm_list_xmlroot = XmlElementTree.fromstring(content)
3367 for vm_xml in vm_list_xmlroot:
3368 if vm_xml.tag.split("}")[1] == 'VMRecord':
3369 if vm_xml.attrib['isVAppTemplate'] == 'false':
3370 rawuuid = vm_xml.attrib['href'].split('/')[-1:]
3371 if 'vm-' in rawuuid[0]:
3372 # vm in format vm-e63d40e7-4ff5-4c6d-851f-96c1e4da86a5 we remove
3373 # vm and use raw UUID as key
3374 vm_dict[rawuuid[0][3:]] = vm_xml.attrib
3375 except:
3376 pass
3377
3378 return vm_dict
3379
3380 def get_vapp(self, vdc_name=None, vapp_name=None, isuuid=False):
3381 """
bayramovb6ffe792016-09-28 11:50:56 +04003382 Method retrieves VM deployed vCloud director. It returns VM attribute as dictionary
bayramovef390722016-09-27 03:34:46 -07003383 contains a list of all VM's deployed for queried VDC.
3384 The key for a dictionary is VM UUID
3385
3386
3387 Args:
3388 vca - is active VCA connection.
3389 vdc_name - is a vdc name that will be used to query vms action
3390
3391 Returns:
3392 The return dictionary and key for each entry vapp UUID
3393 """
3394 vm_dict = {}
3395 vca = self.connect()
3396 if not vca:
3397 raise vimconn.vimconnConnectionException("self.connect() is failed")
3398
3399 if vdc_name is None:
3400 return vm_dict
3401
3402 content = self.vms_view_action(vdc_name=vdc_name)
3403 try:
3404 vm_list_xmlroot = XmlElementTree.fromstring(content)
3405 for vm_xml in vm_list_xmlroot:
bayramovb6ffe792016-09-28 11:50:56 +04003406 if vm_xml.tag.split("}")[1] == 'VMRecord' and vm_xml.attrib['isVAppTemplate'] == 'false':
3407 # lookup done by UUID
bayramovef390722016-09-27 03:34:46 -07003408 if isuuid:
bayramovef390722016-09-27 03:34:46 -07003409 if vapp_name in vm_xml.attrib['container']:
3410 rawuuid = vm_xml.attrib['href'].split('/')[-1:]
3411 if 'vm-' in rawuuid[0]:
bayramovef390722016-09-27 03:34:46 -07003412 vm_dict[rawuuid[0][3:]] = vm_xml.attrib
bayramovb6ffe792016-09-28 11:50:56 +04003413 break
3414 # lookup done by Name
3415 else:
3416 if vapp_name in vm_xml.attrib['name']:
3417 rawuuid = vm_xml.attrib['href'].split('/')[-1:]
3418 if 'vm-' in rawuuid[0]:
3419 vm_dict[rawuuid[0][3:]] = vm_xml.attrib
3420 break
bayramovef390722016-09-27 03:34:46 -07003421 except:
3422 pass
3423
3424 return vm_dict
3425
3426 def get_network_action(self, network_uuid=None):
3427 """
3428 Method leverages vCloud director and query network based on network uuid
3429
3430 Args:
3431 vca - is active VCA connection.
3432 network_uuid - is a network uuid
3433
3434 Returns:
3435 The return XML respond
3436 """
3437
bayramovef390722016-09-27 03:34:46 -07003438 if network_uuid is None:
3439 return None
3440
kasarc5bf2932018-03-09 04:15:22 -08003441 url_list = [self.url, '/api/network/', network_uuid]
bayramovef390722016-09-27 03:34:46 -07003442 vm_list_rest_call = ''.join(url_list)
3443
kasarc5bf2932018-03-09 04:15:22 -08003444 if self.client._session:
3445 headers = {'Accept':'application/*+xml;version=' + API_VERSION,
3446 'x-vcloud-authorization': self.client._session.headers['x-vcloud-authorization']}
bhangare1a0b97c2017-06-21 02:20:15 -07003447
kasarc5bf2932018-03-09 04:15:22 -08003448 response = self.perform_request(req_type='GET',
3449 url=vm_list_rest_call,
3450 headers=headers)
bhangare1a0b97c2017-06-21 02:20:15 -07003451 #Retry login if session expired & retry sending request
3452 if response.status_code == 403:
3453 response = self.retry_rest('GET', vm_list_rest_call)
3454
bayramovef390722016-09-27 03:34:46 -07003455 if response.status_code == requests.codes.ok:
3456 return response.content
3457
3458 return None
3459
3460 def get_vcd_network(self, network_uuid=None):
3461 """
3462 Method retrieves available network from vCloud Director
3463
3464 Args:
3465 network_uuid - is VCD network UUID
3466
3467 Each element serialized as key : value pair
3468
3469 Following keys available for access. network_configuration['Gateway'}
3470 <Configuration>
3471 <IpScopes>
3472 <IpScope>
3473 <IsInherited>true</IsInherited>
3474 <Gateway>172.16.252.100</Gateway>
3475 <Netmask>255.255.255.0</Netmask>
3476 <Dns1>172.16.254.201</Dns1>
3477 <Dns2>172.16.254.202</Dns2>
3478 <DnsSuffix>vmwarelab.edu</DnsSuffix>
3479 <IsEnabled>true</IsEnabled>
3480 <IpRanges>
3481 <IpRange>
3482 <StartAddress>172.16.252.1</StartAddress>
3483 <EndAddress>172.16.252.99</EndAddress>
3484 </IpRange>
3485 </IpRanges>
3486 </IpScope>
3487 </IpScopes>
3488 <FenceMode>bridged</FenceMode>
3489
3490 Returns:
3491 The return dictionary and key for each entry vapp UUID
3492 """
3493
3494 network_configuration = {}
3495 if network_uuid is None:
3496 return network_uuid
3497
bayramovef390722016-09-27 03:34:46 -07003498 try:
bhangarebfdca492017-03-11 01:32:46 -08003499 content = self.get_network_action(network_uuid=network_uuid)
bayramovef390722016-09-27 03:34:46 -07003500 vm_list_xmlroot = XmlElementTree.fromstring(content)
3501
3502 network_configuration['status'] = vm_list_xmlroot.get("status")
3503 network_configuration['name'] = vm_list_xmlroot.get("name")
3504 network_configuration['uuid'] = vm_list_xmlroot.get("id").split(":")[3]
3505
3506 for child in vm_list_xmlroot:
3507 if child.tag.split("}")[1] == 'IsShared':
3508 network_configuration['isShared'] = child.text.strip()
3509 if child.tag.split("}")[1] == 'Configuration':
3510 for configuration in child.iter():
3511 tagKey = configuration.tag.split("}")[1].strip()
3512 if tagKey != "":
3513 network_configuration[tagKey] = configuration.text.strip()
3514 return network_configuration
bhangarebfdca492017-03-11 01:32:46 -08003515 except Exception as exp :
3516 self.logger.debug("get_vcd_network: Failed with Exception {}".format(exp))
3517 raise vimconn.vimconnException("get_vcd_network: Failed with Exception {}".format(exp))
bayramovef390722016-09-27 03:34:46 -07003518
3519 return network_configuration
3520
3521 def delete_network_action(self, network_uuid=None):
3522 """
3523 Method delete given network from vCloud director
3524
3525 Args:
3526 network_uuid - is a network uuid that client wish to delete
3527
3528 Returns:
3529 The return None or XML respond or false
3530 """
kasarc5bf2932018-03-09 04:15:22 -08003531 client = self.connect_as_admin()
3532 if not client:
3533 raise vimconn.vimconnConnectionException("Failed to connect vCD as admin")
bayramovef390722016-09-27 03:34:46 -07003534 if network_uuid is None:
3535 return False
3536
kasarc5bf2932018-03-09 04:15:22 -08003537 url_list = [self.url, '/api/admin/network/', network_uuid]
bayramovef390722016-09-27 03:34:46 -07003538 vm_list_rest_call = ''.join(url_list)
3539
kasarc5bf2932018-03-09 04:15:22 -08003540 if client._session:
3541 headers = {'Accept':'application/*+xml;version=' + API_VERSION,
sbhangarea8e5b782018-06-21 02:10:03 -07003542 'x-vcloud-authorization': client._session.headers['x-vcloud-authorization']}
kasarc5bf2932018-03-09 04:15:22 -08003543 response = self.perform_request(req_type='DELETE',
3544 url=vm_list_rest_call,
3545 headers=headers)
bayramovef390722016-09-27 03:34:46 -07003546 if response.status_code == 202:
3547 return True
3548
3549 return False
3550
bhangare0e571a92017-01-12 04:02:23 -08003551 def create_network(self, network_name=None, net_type='bridge', parent_network_uuid=None,
3552 ip_profile=None, isshared='true'):
bayramovef390722016-09-27 03:34:46 -07003553 """
3554 Method create network in vCloud director
3555
3556 Args:
3557 network_name - is network name to be created.
bhangare0e571a92017-01-12 04:02:23 -08003558 net_type - can be 'bridge','data','ptp','mgmt'.
3559 ip_profile is a dict containing the IP parameters of the network
3560 isshared - is a boolean
bayramovef390722016-09-27 03:34:46 -07003561 parent_network_uuid - is parent provider vdc network that will be used for mapping.
3562 It optional attribute. by default if no parent network indicate the first available will be used.
3563
3564 Returns:
3565 The return network uuid or return None
3566 """
3567
bayramov5761ad12016-10-04 09:00:30 +04003568 new_network_name = [network_name, '-', str(uuid.uuid4())]
3569 content = self.create_network_rest(network_name=''.join(new_network_name),
bhangare0e571a92017-01-12 04:02:23 -08003570 ip_profile=ip_profile,
3571 net_type=net_type,
bayramovef390722016-09-27 03:34:46 -07003572 parent_network_uuid=parent_network_uuid,
3573 isshared=isshared)
3574 if content is None:
3575 self.logger.debug("Failed create network {}.".format(network_name))
3576 return None
3577
3578 try:
3579 vm_list_xmlroot = XmlElementTree.fromstring(content)
3580 vcd_uuid = vm_list_xmlroot.get('id').split(":")
3581 if len(vcd_uuid) == 4:
bhangarebfdca492017-03-11 01:32:46 -08003582 self.logger.info("Created new network name: {} uuid: {}".format(network_name, vcd_uuid[3]))
bayramovef390722016-09-27 03:34:46 -07003583 return vcd_uuid[3]
3584 except:
3585 self.logger.debug("Failed create network {}".format(network_name))
3586 return None
3587
bhangare0e571a92017-01-12 04:02:23 -08003588 def create_network_rest(self, network_name=None, net_type='bridge', parent_network_uuid=None,
3589 ip_profile=None, isshared='true'):
bayramovef390722016-09-27 03:34:46 -07003590 """
3591 Method create network in vCloud director
3592
3593 Args:
3594 network_name - is network name to be created.
bhangare0e571a92017-01-12 04:02:23 -08003595 net_type - can be 'bridge','data','ptp','mgmt'.
3596 ip_profile is a dict containing the IP parameters of the network
3597 isshared - is a boolean
bayramovef390722016-09-27 03:34:46 -07003598 parent_network_uuid - is parent provider vdc network that will be used for mapping.
3599 It optional attribute. by default if no parent network indicate the first available will be used.
3600
3601 Returns:
3602 The return network uuid or return None
3603 """
kasarc5bf2932018-03-09 04:15:22 -08003604 client_as_admin = self.connect_as_admin()
3605 if not client_as_admin:
3606 raise vimconn.vimconnConnectionException("Failed to connect vCD.")
bayramovef390722016-09-27 03:34:46 -07003607 if network_name is None:
3608 return None
3609
kasarc5bf2932018-03-09 04:15:22 -08003610 url_list = [self.url, '/api/admin/vdc/', self.tenant_id]
bayramovef390722016-09-27 03:34:46 -07003611 vm_list_rest_call = ''.join(url_list)
kasarc5bf2932018-03-09 04:15:22 -08003612
3613 if client_as_admin._session:
3614 headers = {'Accept':'application/*+xml;version=' + API_VERSION,
3615 'x-vcloud-authorization': client_as_admin._session.headers['x-vcloud-authorization']}
3616
3617 response = self.perform_request(req_type='GET',
3618 url=vm_list_rest_call,
3619 headers=headers)
bayramovef390722016-09-27 03:34:46 -07003620
3621 provider_network = None
3622 available_networks = None
3623 add_vdc_rest_url = None
3624
3625 if response.status_code != requests.codes.ok:
3626 self.logger.debug("REST API call {} failed. Return status code {}".format(vm_list_rest_call,
3627 response.status_code))
3628 return None
3629 else:
3630 try:
3631 vm_list_xmlroot = XmlElementTree.fromstring(response.content)
3632 for child in vm_list_xmlroot:
3633 if child.tag.split("}")[1] == 'ProviderVdcReference':
3634 provider_network = child.attrib.get('href')
3635 # application/vnd.vmware.admin.providervdc+xml
3636 if child.tag.split("}")[1] == 'Link':
3637 if child.attrib.get('type') == 'application/vnd.vmware.vcloud.orgVdcNetwork+xml' \
3638 and child.attrib.get('rel') == 'add':
3639 add_vdc_rest_url = child.attrib.get('href')
3640 except:
3641 self.logger.debug("Failed parse respond for rest api call {}".format(vm_list_rest_call))
3642 self.logger.debug("Respond body {}".format(response.content))
3643 return None
3644
3645 # find pvdc provided available network
kasarc5bf2932018-03-09 04:15:22 -08003646 response = self.perform_request(req_type='GET',
3647 url=provider_network,
3648 headers=headers)
bayramovef390722016-09-27 03:34:46 -07003649 if response.status_code != requests.codes.ok:
3650 self.logger.debug("REST API call {} failed. Return status code {}".format(vm_list_rest_call,
3651 response.status_code))
3652 return None
3653
bayramovef390722016-09-27 03:34:46 -07003654 if parent_network_uuid is None:
3655 try:
3656 vm_list_xmlroot = XmlElementTree.fromstring(response.content)
3657 for child in vm_list_xmlroot.iter():
3658 if child.tag.split("}")[1] == 'AvailableNetworks':
3659 for networks in child.iter():
3660 # application/vnd.vmware.admin.network+xml
3661 if networks.attrib.get('href') is not None:
3662 available_networks = networks.attrib.get('href')
3663 break
3664 except:
3665 return None
3666
bhangarebfdca492017-03-11 01:32:46 -08003667 try:
3668 #Configure IP profile of the network
3669 ip_profile = ip_profile if ip_profile is not None else DEFAULT_IP_PROFILE
bhangare0e571a92017-01-12 04:02:23 -08003670
kasarde691232017-03-25 03:37:31 -07003671 if 'subnet_address' not in ip_profile or ip_profile['subnet_address'] is None:
3672 subnet_rand = random.randint(0, 255)
3673 ip_base = "192.168.{}.".format(subnet_rand)
3674 ip_profile['subnet_address'] = ip_base + "0/24"
3675 else:
3676 ip_base = ip_profile['subnet_address'].rsplit('.',1)[0] + '.'
3677
bhangarebfdca492017-03-11 01:32:46 -08003678 if 'gateway_address' not in ip_profile or ip_profile['gateway_address'] is None:
kasarde691232017-03-25 03:37:31 -07003679 ip_profile['gateway_address']=ip_base + "1"
bhangarebfdca492017-03-11 01:32:46 -08003680 if 'dhcp_count' not in ip_profile or ip_profile['dhcp_count'] is None:
3681 ip_profile['dhcp_count']=DEFAULT_IP_PROFILE['dhcp_count']
bhangarebfdca492017-03-11 01:32:46 -08003682 if 'dhcp_enabled' not in ip_profile or ip_profile['dhcp_enabled'] is None:
3683 ip_profile['dhcp_enabled']=DEFAULT_IP_PROFILE['dhcp_enabled']
3684 if 'dhcp_start_address' not in ip_profile or ip_profile['dhcp_start_address'] is None:
kasarde691232017-03-25 03:37:31 -07003685 ip_profile['dhcp_start_address']=ip_base + "3"
bhangarebfdca492017-03-11 01:32:46 -08003686 if 'ip_version' not in ip_profile or ip_profile['ip_version'] is None:
3687 ip_profile['ip_version']=DEFAULT_IP_PROFILE['ip_version']
3688 if 'dns_address' not in ip_profile or ip_profile['dns_address'] is None:
kasarde691232017-03-25 03:37:31 -07003689 ip_profile['dns_address']=ip_base + "2"
bhangare0e571a92017-01-12 04:02:23 -08003690
bhangarebfdca492017-03-11 01:32:46 -08003691 gateway_address=ip_profile['gateway_address']
3692 dhcp_count=int(ip_profile['dhcp_count'])
3693 subnet_address=self.convert_cidr_to_netmask(ip_profile['subnet_address'])
bhangare0e571a92017-01-12 04:02:23 -08003694
bhangarebfdca492017-03-11 01:32:46 -08003695 if ip_profile['dhcp_enabled']==True:
3696 dhcp_enabled='true'
3697 else:
3698 dhcp_enabled='false'
3699 dhcp_start_address=ip_profile['dhcp_start_address']
bhangare0e571a92017-01-12 04:02:23 -08003700
bhangarebfdca492017-03-11 01:32:46 -08003701 #derive dhcp_end_address from dhcp_start_address & dhcp_count
3702 end_ip_int = int(netaddr.IPAddress(dhcp_start_address))
3703 end_ip_int += dhcp_count - 1
3704 dhcp_end_address = str(netaddr.IPAddress(end_ip_int))
3705
3706 ip_version=ip_profile['ip_version']
3707 dns_address=ip_profile['dns_address']
3708 except KeyError as exp:
3709 self.logger.debug("Create Network REST: Key error {}".format(exp))
3710 raise vimconn.vimconnException("Create Network REST: Key error{}".format(exp))
bhangare0e571a92017-01-12 04:02:23 -08003711
bayramovef390722016-09-27 03:34:46 -07003712 # either use client provided UUID or search for a first available
3713 # if both are not defined we return none
3714 if parent_network_uuid is not None:
kasarc5bf2932018-03-09 04:15:22 -08003715 url_list = [self.url, '/api/admin/network/', parent_network_uuid]
bayramovef390722016-09-27 03:34:46 -07003716 add_vdc_rest_url = ''.join(url_list)
3717
bhangare06312472017-03-30 05:49:07 -07003718 #Creating all networks as Direct Org VDC type networks.
3719 #Unused in case of Underlay (data/ptp) network interface.
3720 fence_mode="bridged"
3721 is_inherited='false'
tierno455612d2017-05-30 16:40:10 +02003722 dns_list = dns_address.split(";")
3723 dns1 = dns_list[0]
3724 dns2_text = ""
3725 if len(dns_list) >= 2:
3726 dns2_text = "\n <Dns2>{}</Dns2>\n".format(dns_list[1])
bhangare06312472017-03-30 05:49:07 -07003727 data = """ <OrgVdcNetwork name="{0:s}" xmlns="http://www.vmware.com/vcloud/v1.5">
3728 <Description>Openmano created</Description>
3729 <Configuration>
3730 <IpScopes>
3731 <IpScope>
3732 <IsInherited>{1:s}</IsInherited>
3733 <Gateway>{2:s}</Gateway>
3734 <Netmask>{3:s}</Netmask>
tierno455612d2017-05-30 16:40:10 +02003735 <Dns1>{4:s}</Dns1>{5:s}
3736 <IsEnabled>{6:s}</IsEnabled>
bhangare06312472017-03-30 05:49:07 -07003737 <IpRanges>
3738 <IpRange>
tierno455612d2017-05-30 16:40:10 +02003739 <StartAddress>{7:s}</StartAddress>
3740 <EndAddress>{8:s}</EndAddress>
bhangare06312472017-03-30 05:49:07 -07003741 </IpRange>
3742 </IpRanges>
3743 </IpScope>
3744 </IpScopes>
tierno455612d2017-05-30 16:40:10 +02003745 <ParentNetwork href="{9:s}"/>
3746 <FenceMode>{10:s}</FenceMode>
bhangare06312472017-03-30 05:49:07 -07003747 </Configuration>
tierno455612d2017-05-30 16:40:10 +02003748 <IsShared>{11:s}</IsShared>
bhangare06312472017-03-30 05:49:07 -07003749 </OrgVdcNetwork> """.format(escape(network_name), is_inherited, gateway_address,
tierno455612d2017-05-30 16:40:10 +02003750 subnet_address, dns1, dns2_text, dhcp_enabled,
bhangare06312472017-03-30 05:49:07 -07003751 dhcp_start_address, dhcp_end_address, available_networks,
3752 fence_mode, isshared)
bayramovef390722016-09-27 03:34:46 -07003753
bayramovef390722016-09-27 03:34:46 -07003754 headers['Content-Type'] = 'application/vnd.vmware.vcloud.orgVdcNetwork+xml'
bhangare0e571a92017-01-12 04:02:23 -08003755 try:
kasarc5bf2932018-03-09 04:15:22 -08003756 response = self.perform_request(req_type='POST',
3757 url=add_vdc_rest_url,
3758 headers=headers,
3759 data=data)
bayramovef390722016-09-27 03:34:46 -07003760
bhangare0e571a92017-01-12 04:02:23 -08003761 if response.status_code != 201:
bhangarebfdca492017-03-11 01:32:46 -08003762 self.logger.debug("Create Network POST REST API call failed. Return status code {}, Response content: {}"
3763 .format(response.status_code,response.content))
bhangare0e571a92017-01-12 04:02:23 -08003764 else:
kasarc5bf2932018-03-09 04:15:22 -08003765 network_task = self.get_task_from_response(response.content)
3766 self.logger.debug("Create Network REST : Waiting for Network creation complete")
3767 time.sleep(5)
3768 result = self.client.get_task_monitor().wait_for_success(task=network_task)
sbhangarea8e5b782018-06-21 02:10:03 -07003769 if result.get('status') == 'success':
kasarc5bf2932018-03-09 04:15:22 -08003770 return response.content
3771 else:
3772 self.logger.debug("create_network_rest task failed. Network Create response : {}"
3773 .format(response.content))
bhangare0e571a92017-01-12 04:02:23 -08003774 except Exception as exp:
3775 self.logger.debug("create_network_rest : Exception : {} ".format(exp))
3776
3777 return None
3778
3779 def convert_cidr_to_netmask(self, cidr_ip=None):
3780 """
3781 Method sets convert CIDR netmask address to normal IP format
3782 Args:
3783 cidr_ip : CIDR IP address
3784 Returns:
3785 netmask : Converted netmask
3786 """
3787 if cidr_ip is not None:
3788 if '/' in cidr_ip:
3789 network, net_bits = cidr_ip.split('/')
3790 netmask = socket.inet_ntoa(struct.pack(">I", (0xffffffff << (32 - int(net_bits))) & 0xffffffff))
3791 else:
3792 netmask = cidr_ip
3793 return netmask
bayramovef390722016-09-27 03:34:46 -07003794 return None
3795
3796 def get_provider_rest(self, vca=None):
3797 """
3798 Method gets provider vdc view from vcloud director
3799
3800 Args:
3801 network_name - is network name to be created.
3802 parent_network_uuid - is parent provider vdc network that will be used for mapping.
3803 It optional attribute. by default if no parent network indicate the first available will be used.
3804
3805 Returns:
3806 The return xml content of respond or None
3807 """
3808
kasarc5bf2932018-03-09 04:15:22 -08003809 url_list = [self.url, '/api/admin']
3810 if vca:
3811 headers = {'Accept':'application/*+xml;version=' + API_VERSION,
3812 'x-vcloud-authorization': self.client._session.headers['x-vcloud-authorization']}
3813 response = self.perform_request(req_type='GET',
3814 url=''.join(url_list),
3815 headers=headers)
bayramovef390722016-09-27 03:34:46 -07003816
3817 if response.status_code == requests.codes.ok:
3818 return response.content
3819 return None
3820
3821 def create_vdc(self, vdc_name=None):
3822
3823 vdc_dict = {}
3824
3825 xml_content = self.create_vdc_from_tmpl_rest(vdc_name=vdc_name)
3826 if xml_content is not None:
bayramovef390722016-09-27 03:34:46 -07003827 try:
3828 task_resp_xmlroot = XmlElementTree.fromstring(xml_content)
3829 for child in task_resp_xmlroot:
3830 if child.tag.split("}")[1] == 'Owner':
3831 vdc_id = child.attrib.get('href').split("/")[-1]
3832 vdc_dict[vdc_id] = task_resp_xmlroot.get('href')
3833 return vdc_dict
3834 except:
3835 self.logger.debug("Respond body {}".format(xml_content))
3836
3837 return None
3838
3839 def create_vdc_from_tmpl_rest(self, vdc_name=None):
3840 """
3841 Method create vdc in vCloud director based on VDC template.
kasarc5bf2932018-03-09 04:15:22 -08003842 it uses pre-defined template.
bayramovef390722016-09-27 03:34:46 -07003843
3844 Args:
3845 vdc_name - name of a new vdc.
3846
3847 Returns:
3848 The return xml content of respond or None
3849 """
kasarc5bf2932018-03-09 04:15:22 -08003850 # pre-requesite atleast one vdc template should be available in vCD
bayramovef390722016-09-27 03:34:46 -07003851 self.logger.info("Creating new vdc {}".format(vdc_name))
kasarc5bf2932018-03-09 04:15:22 -08003852 vca = self.connect_as_admin()
bayramovef390722016-09-27 03:34:46 -07003853 if not vca:
kasarc5bf2932018-03-09 04:15:22 -08003854 raise vimconn.vimconnConnectionException("Failed to connect vCD")
bayramovef390722016-09-27 03:34:46 -07003855 if vdc_name is None:
3856 return None
3857
kasarc5bf2932018-03-09 04:15:22 -08003858 url_list = [self.url, '/api/vdcTemplates']
bayramovef390722016-09-27 03:34:46 -07003859 vm_list_rest_call = ''.join(url_list)
kasarc5bf2932018-03-09 04:15:22 -08003860
3861 headers = {'Accept':'application/*+xml;version=' + API_VERSION,
3862 'x-vcloud-authorization': vca._session.headers['x-vcloud-authorization']}
3863 response = self.perform_request(req_type='GET',
3864 url=vm_list_rest_call,
3865 headers=headers)
bayramovef390722016-09-27 03:34:46 -07003866
3867 # container url to a template
3868 vdc_template_ref = None
3869 try:
3870 vm_list_xmlroot = XmlElementTree.fromstring(response.content)
3871 for child in vm_list_xmlroot:
3872 # application/vnd.vmware.admin.providervdc+xml
3873 # we need find a template from witch we instantiate VDC
3874 if child.tag.split("}")[1] == 'VdcTemplate':
kated47ad5f2017-08-03 02:16:13 -07003875 if child.attrib.get('type') == 'application/vnd.vmware.admin.vdcTemplate+xml':
bayramovef390722016-09-27 03:34:46 -07003876 vdc_template_ref = child.attrib.get('href')
3877 except:
3878 self.logger.debug("Failed parse respond for rest api call {}".format(vm_list_rest_call))
3879 self.logger.debug("Respond body {}".format(response.content))
3880 return None
3881
3882 # if we didn't found required pre defined template we return None
3883 if vdc_template_ref is None:
3884 return None
3885
3886 try:
3887 # instantiate vdc
kasarc5bf2932018-03-09 04:15:22 -08003888 url_list = [self.url, '/api/org/', self.org_uuid, '/action/instantiate']
bayramovef390722016-09-27 03:34:46 -07003889 vm_list_rest_call = ''.join(url_list)
3890 data = """<InstantiateVdcTemplateParams name="{0:s}" xmlns="http://www.vmware.com/vcloud/v1.5">
3891 <Source href="{1:s}"></Source>
3892 <Description>opnemano</Description>
3893 </InstantiateVdcTemplateParams>""".format(vdc_name, vdc_template_ref)
kated47ad5f2017-08-03 02:16:13 -07003894
kasarc5bf2932018-03-09 04:15:22 -08003895 headers['Content-Type'] = 'application/vnd.vmware.vcloud.instantiateVdcTemplateParams+xml'
3896
3897 response = self.perform_request(req_type='POST',
3898 url=vm_list_rest_call,
3899 headers=headers,
3900 data=data)
3901
3902 vdc_task = self.get_task_from_response(response.content)
3903 self.client.get_task_monitor().wait_for_success(task=vdc_task)
kated47ad5f2017-08-03 02:16:13 -07003904
bayramovef390722016-09-27 03:34:46 -07003905 # if we all ok we respond with content otherwise by default None
3906 if response.status_code >= 200 and response.status_code < 300:
3907 return response.content
3908 return None
3909 except:
3910 self.logger.debug("Failed parse respond for rest api call {}".format(vm_list_rest_call))
3911 self.logger.debug("Respond body {}".format(response.content))
3912
3913 return None
3914
3915 def create_vdc_rest(self, vdc_name=None):
3916 """
3917 Method create network in vCloud director
3918
3919 Args:
kasarc5bf2932018-03-09 04:15:22 -08003920 vdc_name - vdc name to be created
bayramovef390722016-09-27 03:34:46 -07003921 Returns:
kasarc5bf2932018-03-09 04:15:22 -08003922 The return response
bayramovef390722016-09-27 03:34:46 -07003923 """
3924
3925 self.logger.info("Creating new vdc {}".format(vdc_name))
bayramovef390722016-09-27 03:34:46 -07003926
3927 vca = self.connect_as_admin()
3928 if not vca:
kasarc5bf2932018-03-09 04:15:22 -08003929 raise vimconn.vimconnConnectionException("Failed to connect vCD")
bayramovef390722016-09-27 03:34:46 -07003930 if vdc_name is None:
3931 return None
3932
kasarc5bf2932018-03-09 04:15:22 -08003933 url_list = [self.url, '/api/admin/org/', self.org_uuid]
bayramovef390722016-09-27 03:34:46 -07003934 vm_list_rest_call = ''.join(url_list)
kasarc5bf2932018-03-09 04:15:22 -08003935
3936 if vca._session:
3937 headers = {'Accept':'application/*+xml;version=' + API_VERSION,
3938 'x-vcloud-authorization': self.client._session.headers['x-vcloud-authorization']}
3939 response = self.perform_request(req_type='GET',
3940 url=vm_list_rest_call,
3941 headers=headers)
bayramovef390722016-09-27 03:34:46 -07003942
3943 provider_vdc_ref = None
3944 add_vdc_rest_url = None
3945 available_networks = None
3946
3947 if response.status_code != requests.codes.ok:
3948 self.logger.debug("REST API call {} failed. Return status code {}".format(vm_list_rest_call,
3949 response.status_code))
3950 return None
3951 else:
3952 try:
3953 vm_list_xmlroot = XmlElementTree.fromstring(response.content)
3954 for child in vm_list_xmlroot:
3955 # application/vnd.vmware.admin.providervdc+xml
3956 if child.tag.split("}")[1] == 'Link':
3957 if child.attrib.get('type') == 'application/vnd.vmware.admin.createVdcParams+xml' \
3958 and child.attrib.get('rel') == 'add':
3959 add_vdc_rest_url = child.attrib.get('href')
3960 except:
3961 self.logger.debug("Failed parse respond for rest api call {}".format(vm_list_rest_call))
3962 self.logger.debug("Respond body {}".format(response.content))
3963 return None
3964
3965 response = self.get_provider_rest(vca=vca)
bayramovef390722016-09-27 03:34:46 -07003966 try:
3967 vm_list_xmlroot = XmlElementTree.fromstring(response)
3968 for child in vm_list_xmlroot:
3969 if child.tag.split("}")[1] == 'ProviderVdcReferences':
3970 for sub_child in child:
3971 provider_vdc_ref = sub_child.attrib.get('href')
3972 except:
3973 self.logger.debug("Failed parse respond for rest api call {}".format(vm_list_rest_call))
3974 self.logger.debug("Respond body {}".format(response))
3975 return None
3976
bayramovef390722016-09-27 03:34:46 -07003977 if add_vdc_rest_url is not None and provider_vdc_ref is not None:
3978 data = """ <CreateVdcParams name="{0:s}" xmlns="http://www.vmware.com/vcloud/v1.5"><Description>{1:s}</Description>
3979 <AllocationModel>ReservationPool</AllocationModel>
3980 <ComputeCapacity><Cpu><Units>MHz</Units><Allocated>2048</Allocated><Limit>2048</Limit></Cpu>
3981 <Memory><Units>MB</Units><Allocated>2048</Allocated><Limit>2048</Limit></Memory>
3982 </ComputeCapacity><NicQuota>0</NicQuota><NetworkQuota>100</NetworkQuota>
3983 <VdcStorageProfile><Enabled>true</Enabled><Units>MB</Units><Limit>20480</Limit><Default>true</Default></VdcStorageProfile>
3984 <ProviderVdcReference
3985 name="Main Provider"
3986 href="{2:s}" />
3987 <UsesFastProvisioning>true</UsesFastProvisioning></CreateVdcParams>""".format(escape(vdc_name),
3988 escape(vdc_name),
3989 provider_vdc_ref)
3990
bayramovef390722016-09-27 03:34:46 -07003991 headers['Content-Type'] = 'application/vnd.vmware.admin.createVdcParams+xml'
kasarc5bf2932018-03-09 04:15:22 -08003992
3993 response = self.perform_request(req_type='POST',
3994 url=add_vdc_rest_url,
3995 headers=headers,
3996 data=data)
bayramovef390722016-09-27 03:34:46 -07003997
bayramovef390722016-09-27 03:34:46 -07003998 # if we all ok we respond with content otherwise by default None
3999 if response.status_code == 201:
4000 return response.content
4001 return None
bayramovfe3f3c92016-10-04 07:53:41 +04004002
bhangarefda5f7c2017-01-12 23:50:34 -08004003 def get_vapp_details_rest(self, vapp_uuid=None, need_admin_access=False):
bayramovfe3f3c92016-10-04 07:53:41 +04004004 """
4005 Method retrieve vapp detail from vCloud director
4006
4007 Args:
4008 vapp_uuid - is vapp identifier.
4009
4010 Returns:
4011 The return network uuid or return None
4012 """
4013
4014 parsed_respond = {}
bhangarefda5f7c2017-01-12 23:50:34 -08004015 vca = None
bayramovfe3f3c92016-10-04 07:53:41 +04004016
bhangarefda5f7c2017-01-12 23:50:34 -08004017 if need_admin_access:
4018 vca = self.connect_as_admin()
4019 else:
sbhangarea8e5b782018-06-21 02:10:03 -07004020 vca = self.client
bhangarefda5f7c2017-01-12 23:50:34 -08004021
bayramovfe3f3c92016-10-04 07:53:41 +04004022 if not vca:
kasarc5bf2932018-03-09 04:15:22 -08004023 raise vimconn.vimconnConnectionException("Failed to connect vCD")
bayramovfe3f3c92016-10-04 07:53:41 +04004024 if vapp_uuid is None:
4025 return None
4026
kasarc5bf2932018-03-09 04:15:22 -08004027 url_list = [self.url, '/api/vApp/vapp-', vapp_uuid]
bayramovfe3f3c92016-10-04 07:53:41 +04004028 get_vapp_restcall = ''.join(url_list)
bhangarefda5f7c2017-01-12 23:50:34 -08004029
kasarc5bf2932018-03-09 04:15:22 -08004030 if vca._session:
4031 headers = {'Accept':'application/*+xml;version=' + API_VERSION,
sbhangarea8e5b782018-06-21 02:10:03 -07004032 'x-vcloud-authorization': vca._session.headers['x-vcloud-authorization']}
kasarc5bf2932018-03-09 04:15:22 -08004033 response = self.perform_request(req_type='GET',
4034 url=get_vapp_restcall,
4035 headers=headers)
bayramovfe3f3c92016-10-04 07:53:41 +04004036
bhangare1a0b97c2017-06-21 02:20:15 -07004037 if response.status_code == 403:
4038 if need_admin_access == False:
4039 response = self.retry_rest('GET', get_vapp_restcall)
4040
bayramovfe3f3c92016-10-04 07:53:41 +04004041 if response.status_code != requests.codes.ok:
4042 self.logger.debug("REST API call {} failed. Return status code {}".format(get_vapp_restcall,
4043 response.status_code))
4044 return parsed_respond
4045
4046 try:
4047 xmlroot_respond = XmlElementTree.fromstring(response.content)
4048 parsed_respond['ovfDescriptorUploaded'] = xmlroot_respond.attrib['ovfDescriptorUploaded']
4049
bhangarea92ae392017-01-12 22:30:29 -08004050 namespaces = {"vssd":"http://schemas.dmtf.org/wbem/wscim/1/cim-schema/2/CIM_VirtualSystemSettingData" ,
4051 'ovf': 'http://schemas.dmtf.org/ovf/envelope/1',
4052 'vmw': 'http://www.vmware.com/schema/ovf',
4053 'vm': 'http://www.vmware.com/vcloud/v1.5',
4054 'rasd':"http://schemas.dmtf.org/wbem/wscim/1/cim-schema/2/CIM_ResourceAllocationSettingData",
4055 "vmext":"http://www.vmware.com/vcloud/extension/v1.5",
4056 "xmlns":"http://www.vmware.com/vcloud/v1.5"
4057 }
bayramovfe3f3c92016-10-04 07:53:41 +04004058
bhangarea92ae392017-01-12 22:30:29 -08004059 created_section = xmlroot_respond.find('vm:DateCreated', namespaces)
bayramovfe3f3c92016-10-04 07:53:41 +04004060 if created_section is not None:
4061 parsed_respond['created'] = created_section.text
4062
bhangarea92ae392017-01-12 22:30:29 -08004063 network_section = xmlroot_respond.find('vm:NetworkConfigSection/vm:NetworkConfig', namespaces)
bayramov5761ad12016-10-04 09:00:30 +04004064 if network_section is not None and 'networkName' in network_section.attrib:
bayramovfe3f3c92016-10-04 07:53:41 +04004065 parsed_respond['networkname'] = network_section.attrib['networkName']
4066
4067 ipscopes_section = \
4068 xmlroot_respond.find('vm:NetworkConfigSection/vm:NetworkConfig/vm:Configuration/vm:IpScopes',
bhangarea92ae392017-01-12 22:30:29 -08004069 namespaces)
bayramovfe3f3c92016-10-04 07:53:41 +04004070 if ipscopes_section is not None:
4071 for ipscope in ipscopes_section:
4072 for scope in ipscope:
4073 tag_key = scope.tag.split("}")[1]
4074 if tag_key == 'IpRanges':
4075 ip_ranges = scope.getchildren()
4076 for ipblock in ip_ranges:
4077 for block in ipblock:
4078 parsed_respond[block.tag.split("}")[1]] = block.text
4079 else:
4080 parsed_respond[tag_key] = scope.text
4081
4082 # parse children section for other attrib
bhangarea92ae392017-01-12 22:30:29 -08004083 children_section = xmlroot_respond.find('vm:Children/', namespaces)
bayramovfe3f3c92016-10-04 07:53:41 +04004084 if children_section is not None:
4085 parsed_respond['name'] = children_section.attrib['name']
bhangarea92ae392017-01-12 22:30:29 -08004086 parsed_respond['nestedHypervisorEnabled'] = children_section.attrib['nestedHypervisorEnabled'] \
4087 if "nestedHypervisorEnabled" in children_section.attrib else None
bayramovfe3f3c92016-10-04 07:53:41 +04004088 parsed_respond['deployed'] = children_section.attrib['deployed']
4089 parsed_respond['status'] = children_section.attrib['status']
4090 parsed_respond['vmuuid'] = children_section.attrib['id'].split(":")[-1]
bhangarea92ae392017-01-12 22:30:29 -08004091 network_adapter = children_section.find('vm:NetworkConnectionSection', namespaces)
bayramovfe3f3c92016-10-04 07:53:41 +04004092 nic_list = []
4093 for adapters in network_adapter:
4094 adapter_key = adapters.tag.split("}")[1]
4095 if adapter_key == 'PrimaryNetworkConnectionIndex':
4096 parsed_respond['primarynetwork'] = adapters.text
4097 if adapter_key == 'NetworkConnection':
4098 vnic = {}
bayramov5761ad12016-10-04 09:00:30 +04004099 if 'network' in adapters.attrib:
bayramovfe3f3c92016-10-04 07:53:41 +04004100 vnic['network'] = adapters.attrib['network']
4101 for adapter in adapters:
4102 setting_key = adapter.tag.split("}")[1]
4103 vnic[setting_key] = adapter.text
4104 nic_list.append(vnic)
4105
4106 for link in children_section:
bayramov5761ad12016-10-04 09:00:30 +04004107 if link.tag.split("}")[1] == 'Link' and 'rel' in link.attrib:
bayramovfe3f3c92016-10-04 07:53:41 +04004108 if link.attrib['rel'] == 'screen:acquireTicket':
4109 parsed_respond['acquireTicket'] = link.attrib
4110 if link.attrib['rel'] == 'screen:acquireMksTicket':
4111 parsed_respond['acquireMksTicket'] = link.attrib
4112
4113 parsed_respond['interfaces'] = nic_list
bhangarefda5f7c2017-01-12 23:50:34 -08004114 vCloud_extension_section = children_section.find('xmlns:VCloudExtension', namespaces)
4115 if vCloud_extension_section is not None:
4116 vm_vcenter_info = {}
4117 vim_info = vCloud_extension_section.find('vmext:VmVimInfo', namespaces)
4118 vmext = vim_info.find('vmext:VmVimObjectRef', namespaces)
4119 if vmext is not None:
4120 vm_vcenter_info["vm_moref_id"] = vmext.find('vmext:MoRef', namespaces).text
bhangarefda5f7c2017-01-12 23:50:34 -08004121 parsed_respond["vm_vcenter_info"]= vm_vcenter_info
bayramovfe3f3c92016-10-04 07:53:41 +04004122
bhangarea92ae392017-01-12 22:30:29 -08004123 virtual_hardware_section = children_section.find('ovf:VirtualHardwareSection', namespaces)
4124 vm_virtual_hardware_info = {}
4125 if virtual_hardware_section is not None:
4126 for item in virtual_hardware_section.iterfind('ovf:Item',namespaces):
4127 if item.find("rasd:Description",namespaces).text == "Hard disk":
4128 disk_size = item.find("rasd:HostResource" ,namespaces
4129 ).attrib["{"+namespaces['vm']+"}capacity"]
4130
4131 vm_virtual_hardware_info["disk_size"]= disk_size
4132 break
4133
4134 for link in virtual_hardware_section:
4135 if link.tag.split("}")[1] == 'Link' and 'rel' in link.attrib:
4136 if link.attrib['rel'] == 'edit' and link.attrib['href'].endswith("/disks"):
4137 vm_virtual_hardware_info["disk_edit_href"] = link.attrib['href']
4138 break
4139
4140 parsed_respond["vm_virtual_hardware"]= vm_virtual_hardware_info
4141 except Exception as exp :
4142 self.logger.info("Error occurred calling rest api for getting vApp details {}".format(exp))
bayramovfe3f3c92016-10-04 07:53:41 +04004143 return parsed_respond
4144
kasarc5bf2932018-03-09 04:15:22 -08004145 def acquire_console(self, vm_uuid=None):
bayramovfe3f3c92016-10-04 07:53:41 +04004146
bayramovfe3f3c92016-10-04 07:53:41 +04004147 if vm_uuid is None:
4148 return None
kasarc5bf2932018-03-09 04:15:22 -08004149 if self.client._session:
4150 headers = {'Accept':'application/*+xml;version=' + API_VERSION,
4151 'x-vcloud-authorization': self.client._session.headers['x-vcloud-authorization']}
4152 vm_dict = self.get_vapp_details_rest(vapp_uuid=vm_uuid)
bayramovfe3f3c92016-10-04 07:53:41 +04004153 console_dict = vm_dict['acquireTicket']
4154 console_rest_call = console_dict['href']
4155
kasarc5bf2932018-03-09 04:15:22 -08004156 response = self.perform_request(req_type='POST',
4157 url=console_rest_call,
4158 headers=headers)
4159
bhangare1a0b97c2017-06-21 02:20:15 -07004160 if response.status_code == 403:
4161 response = self.retry_rest('POST', console_rest_call)
bayramovfe3f3c92016-10-04 07:53:41 +04004162
bayramov5761ad12016-10-04 09:00:30 +04004163 if response.status_code == requests.codes.ok:
4164 return response.content
bayramovfe3f3c92016-10-04 07:53:41 +04004165
kate15f1c382016-12-15 01:12:40 -08004166 return None
kate13ab2c42016-12-23 01:34:24 -08004167
bhangarea92ae392017-01-12 22:30:29 -08004168 def modify_vm_disk(self, vapp_uuid, flavor_disk):
4169 """
4170 Method retrieve vm disk details
4171
4172 Args:
4173 vapp_uuid - is vapp identifier.
4174 flavor_disk - disk size as specified in VNFD (flavor)
4175
4176 Returns:
4177 The return network uuid or return None
4178 """
4179 status = None
4180 try:
4181 #Flavor disk is in GB convert it into MB
4182 flavor_disk = int(flavor_disk) * 1024
4183 vm_details = self.get_vapp_details_rest(vapp_uuid)
4184 if vm_details:
4185 vm_name = vm_details["name"]
4186 self.logger.info("VM: {} flavor_disk :{}".format(vm_name , flavor_disk))
4187
4188 if vm_details and "vm_virtual_hardware" in vm_details:
4189 vm_disk = int(vm_details["vm_virtual_hardware"]["disk_size"])
4190 disk_edit_href = vm_details["vm_virtual_hardware"]["disk_edit_href"]
4191
4192 self.logger.info("VM: {} VM_disk :{}".format(vm_name , vm_disk))
4193
4194 if flavor_disk > vm_disk:
4195 status = self.modify_vm_disk_rest(disk_edit_href ,flavor_disk)
4196 self.logger.info("Modify disk of VM {} from {} to {} MB".format(vm_name,
4197 vm_disk, flavor_disk ))
4198 else:
4199 status = True
4200 self.logger.info("No need to modify disk of VM {}".format(vm_name))
4201
4202 return status
4203 except Exception as exp:
4204 self.logger.info("Error occurred while modifing disk size {}".format(exp))
4205
4206
4207 def modify_vm_disk_rest(self, disk_href , disk_size):
4208 """
4209 Method retrieve modify vm disk size
4210
4211 Args:
4212 disk_href - vCD API URL to GET and PUT disk data
4213 disk_size - disk size as specified in VNFD (flavor)
4214
4215 Returns:
4216 The return network uuid or return None
4217 """
bhangarea92ae392017-01-12 22:30:29 -08004218 if disk_href is None or disk_size is None:
4219 return None
4220
kasarc5bf2932018-03-09 04:15:22 -08004221 if self.client._session:
4222 headers = {'Accept':'application/*+xml;version=' + API_VERSION,
sbhangarea8e5b782018-06-21 02:10:03 -07004223 'x-vcloud-authorization': self.client._session.headers['x-vcloud-authorization']}
kasarc5bf2932018-03-09 04:15:22 -08004224 response = self.perform_request(req_type='GET',
4225 url=disk_href,
4226 headers=headers)
bhangare1a0b97c2017-06-21 02:20:15 -07004227
4228 if response.status_code == 403:
4229 response = self.retry_rest('GET', disk_href)
bhangarea92ae392017-01-12 22:30:29 -08004230
4231 if response.status_code != requests.codes.ok:
4232 self.logger.debug("GET REST API call {} failed. Return status code {}".format(disk_href,
4233 response.status_code))
4234 return None
4235 try:
4236 lxmlroot_respond = lxmlElementTree.fromstring(response.content)
4237 namespaces = {prefix:uri for prefix,uri in lxmlroot_respond.nsmap.iteritems() if prefix}
kasarc5bf2932018-03-09 04:15:22 -08004238 #For python3
4239 #namespaces = {prefix:uri for prefix,uri in lxmlroot_respond.nsmap.items() if prefix}
bhangarea92ae392017-01-12 22:30:29 -08004240 namespaces["xmlns"]= "http://www.vmware.com/vcloud/v1.5"
4241
4242 for item in lxmlroot_respond.iterfind('xmlns:Item',namespaces):
4243 if item.find("rasd:Description",namespaces).text == "Hard disk":
4244 disk_item = item.find("rasd:HostResource" ,namespaces )
4245 if disk_item is not None:
4246 disk_item.attrib["{"+namespaces['xmlns']+"}capacity"] = str(disk_size)
4247 break
4248
4249 data = lxmlElementTree.tostring(lxmlroot_respond, encoding='utf8', method='xml',
4250 xml_declaration=True)
4251
4252 #Send PUT request to modify disk size
bhangarea92ae392017-01-12 22:30:29 -08004253 headers['Content-Type'] = 'application/vnd.vmware.vcloud.rasdItemsList+xml; charset=ISO-8859-1'
4254
kasarc5bf2932018-03-09 04:15:22 -08004255 response = self.perform_request(req_type='PUT',
4256 url=disk_href,
4257 headers=headers,
4258 data=data)
bhangare1a0b97c2017-06-21 02:20:15 -07004259 if response.status_code == 403:
4260 add_headers = {'Content-Type': headers['Content-Type']}
4261 response = self.retry_rest('PUT', disk_href, add_headers, data)
bhangarea92ae392017-01-12 22:30:29 -08004262
4263 if response.status_code != 202:
4264 self.logger.debug("PUT REST API call {} failed. Return status code {}".format(disk_href,
4265 response.status_code))
4266 else:
kasarc5bf2932018-03-09 04:15:22 -08004267 modify_disk_task = self.get_task_from_response(response.content)
4268 result = self.client.get_task_monitor().wait_for_success(task=modify_disk_task)
4269 if result.get('status') == 'success':
4270 return True
4271 else:
sbhangarea8e5b782018-06-21 02:10:03 -07004272 return False
bhangarea92ae392017-01-12 22:30:29 -08004273 return None
4274
4275 except Exception as exp :
4276 self.logger.info("Error occurred calling rest api for modifing disk size {}".format(exp))
4277 return None
4278
bhangarefda5f7c2017-01-12 23:50:34 -08004279 def add_pci_devices(self, vapp_uuid , pci_devices , vmname_andid):
4280 """
4281 Method to attach pci devices to VM
4282
4283 Args:
4284 vapp_uuid - uuid of vApp/VM
4285 pci_devices - pci devices infromation as specified in VNFD (flavor)
4286
4287 Returns:
4288 The status of add pci device task , vm object and
4289 vcenter_conect object
4290 """
4291 vm_obj = None
bhangarefda5f7c2017-01-12 23:50:34 -08004292 self.logger.info("Add pci devices {} into vApp {}".format(pci_devices , vapp_uuid))
bhangare06312472017-03-30 05:49:07 -07004293 vcenter_conect, content = self.get_vcenter_content()
4294 vm_moref_id = self.get_vm_moref_id(vapp_uuid)
kateeb044522017-03-06 23:54:39 -08004295
bhangare06312472017-03-30 05:49:07 -07004296 if vm_moref_id:
bhangarefda5f7c2017-01-12 23:50:34 -08004297 try:
4298 no_of_pci_devices = len(pci_devices)
4299 if no_of_pci_devices > 0:
bhangarefda5f7c2017-01-12 23:50:34 -08004300 #Get VM and its host
bhangare06312472017-03-30 05:49:07 -07004301 host_obj, vm_obj = self.get_vm_obj(content, vm_moref_id)
bhangarefda5f7c2017-01-12 23:50:34 -08004302 self.logger.info("VM {} is currently on host {}".format(vm_obj, host_obj))
4303 if host_obj and vm_obj:
4304 #get PCI devies from host on which vapp is currently installed
4305 avilable_pci_devices = self.get_pci_devices(host_obj, no_of_pci_devices)
4306
4307 if avilable_pci_devices is None:
4308 #find other hosts with active pci devices
4309 new_host_obj , avilable_pci_devices = self.get_host_and_PCIdevices(
4310 content,
4311 no_of_pci_devices
4312 )
4313
4314 if new_host_obj is not None and avilable_pci_devices is not None and len(avilable_pci_devices)> 0:
4315 #Migrate vm to the host where PCI devices are availble
4316 self.logger.info("Relocate VM {} on new host {}".format(vm_obj, new_host_obj))
4317 task = self.relocate_vm(new_host_obj, vm_obj)
4318 if task is not None:
4319 result = self.wait_for_vcenter_task(task, vcenter_conect)
4320 self.logger.info("Migrate VM status: {}".format(result))
4321 host_obj = new_host_obj
4322 else:
4323 self.logger.info("Fail to migrate VM : {}".format(result))
4324 raise vimconn.vimconnNotFoundException(
4325 "Fail to migrate VM : {} to host {}".format(
4326 vmname_andid,
4327 new_host_obj)
4328 )
4329
4330 if host_obj is not None and avilable_pci_devices is not None and len(avilable_pci_devices)> 0:
4331 #Add PCI devices one by one
4332 for pci_device in avilable_pci_devices:
4333 task = self.add_pci_to_vm(host_obj, vm_obj, pci_device)
4334 if task:
4335 status= self.wait_for_vcenter_task(task, vcenter_conect)
4336 if status:
4337 self.logger.info("Added PCI device {} to VM {}".format(pci_device,str(vm_obj)))
4338 else:
kateeb044522017-03-06 23:54:39 -08004339 self.logger.error("Fail to add PCI device {} to VM {}".format(pci_device,str(vm_obj)))
bhangarefda5f7c2017-01-12 23:50:34 -08004340 return True, vm_obj, vcenter_conect
4341 else:
4342 self.logger.error("Currently there is no host with"\
4343 " {} number of avaialble PCI devices required for VM {}".format(
4344 no_of_pci_devices,
4345 vmname_andid)
4346 )
4347 raise vimconn.vimconnNotFoundException(
4348 "Currently there is no host with {} "\
4349 "number of avaialble PCI devices required for VM {}".format(
4350 no_of_pci_devices,
4351 vmname_andid))
4352 else:
4353 self.logger.debug("No infromation about PCI devices {} ",pci_devices)
4354
4355 except vmodl.MethodFault as error:
4356 self.logger.error("Error occurred while adding PCI devices {} ",error)
4357 return None, vm_obj, vcenter_conect
4358
4359 def get_vm_obj(self, content, mob_id):
4360 """
4361 Method to get the vsphere VM object associated with a given morf ID
4362 Args:
4363 vapp_uuid - uuid of vApp/VM
4364 content - vCenter content object
4365 mob_id - mob_id of VM
4366
4367 Returns:
4368 VM and host object
4369 """
4370 vm_obj = None
4371 host_obj = None
4372 try :
4373 container = content.viewManager.CreateContainerView(content.rootFolder,
4374 [vim.VirtualMachine], True
4375 )
4376 for vm in container.view:
4377 mobID = vm._GetMoId()
4378 if mobID == mob_id:
4379 vm_obj = vm
4380 host_obj = vm_obj.runtime.host
4381 break
4382 except Exception as exp:
4383 self.logger.error("Error occurred while finding VM object : {}".format(exp))
4384 return host_obj, vm_obj
4385
4386 def get_pci_devices(self, host, need_devices):
4387 """
4388 Method to get the details of pci devices on given host
4389 Args:
4390 host - vSphere host object
4391 need_devices - number of pci devices needed on host
4392
4393 Returns:
4394 array of pci devices
4395 """
4396 all_devices = []
4397 all_device_ids = []
4398 used_devices_ids = []
4399
4400 try:
4401 if host:
4402 pciPassthruInfo = host.config.pciPassthruInfo
4403 pciDevies = host.hardware.pciDevice
4404
4405 for pci_status in pciPassthruInfo:
4406 if pci_status.passthruActive:
4407 for device in pciDevies:
4408 if device.id == pci_status.id:
4409 all_device_ids.append(device.id)
4410 all_devices.append(device)
4411
4412 #check if devices are in use
4413 avalible_devices = all_devices
4414 for vm in host.vm:
4415 if vm.runtime.powerState == vim.VirtualMachinePowerState.poweredOn:
4416 vm_devices = vm.config.hardware.device
4417 for device in vm_devices:
4418 if type(device) is vim.vm.device.VirtualPCIPassthrough:
4419 if device.backing.id in all_device_ids:
4420 for use_device in avalible_devices:
4421 if use_device.id == device.backing.id:
4422 avalible_devices.remove(use_device)
4423 used_devices_ids.append(device.backing.id)
4424 self.logger.debug("Device {} from devices {}"\
4425 "is in use".format(device.backing.id,
4426 device)
4427 )
4428 if len(avalible_devices) < need_devices:
4429 self.logger.debug("Host {} don't have {} number of active devices".format(host,
4430 need_devices))
4431 self.logger.debug("found only {} devives {}".format(len(avalible_devices),
4432 avalible_devices))
4433 return None
4434 else:
4435 required_devices = avalible_devices[:need_devices]
4436 self.logger.info("Found {} PCI devivces on host {} but required only {}".format(
4437 len(avalible_devices),
4438 host,
4439 need_devices))
4440 self.logger.info("Retruning {} devices as {}".format(need_devices,
4441 required_devices ))
4442 return required_devices
4443
4444 except Exception as exp:
4445 self.logger.error("Error {} occurred while finding pci devices on host: {}".format(exp, host))
4446
4447 return None
4448
4449 def get_host_and_PCIdevices(self, content, need_devices):
4450 """
4451 Method to get the details of pci devices infromation on all hosts
4452
4453 Args:
4454 content - vSphere host object
4455 need_devices - number of pci devices needed on host
4456
4457 Returns:
4458 array of pci devices and host object
4459 """
4460 host_obj = None
4461 pci_device_objs = None
4462 try:
4463 if content:
4464 container = content.viewManager.CreateContainerView(content.rootFolder,
4465 [vim.HostSystem], True)
4466 for host in container.view:
4467 devices = self.get_pci_devices(host, need_devices)
4468 if devices:
4469 host_obj = host
4470 pci_device_objs = devices
4471 break
4472 except Exception as exp:
4473 self.logger.error("Error {} occurred while finding pci devices on host: {}".format(exp, host_obj))
4474
4475 return host_obj,pci_device_objs
4476
4477 def relocate_vm(self, dest_host, vm) :
4478 """
4479 Method to get the relocate VM to new host
4480
4481 Args:
4482 dest_host - vSphere host object
4483 vm - vSphere VM object
4484
4485 Returns:
4486 task object
4487 """
4488 task = None
4489 try:
4490 relocate_spec = vim.vm.RelocateSpec(host=dest_host)
4491 task = vm.Relocate(relocate_spec)
4492 self.logger.info("Migrating {} to destination host {}".format(vm, dest_host))
4493 except Exception as exp:
4494 self.logger.error("Error occurred while relocate VM {} to new host {}: {}".format(
4495 dest_host, vm, exp))
4496 return task
4497
4498 def wait_for_vcenter_task(self, task, actionName='job', hideResult=False):
4499 """
4500 Waits and provides updates on a vSphere task
4501 """
4502 while task.info.state == vim.TaskInfo.State.running:
4503 time.sleep(2)
4504
4505 if task.info.state == vim.TaskInfo.State.success:
4506 if task.info.result is not None and not hideResult:
4507 self.logger.info('{} completed successfully, result: {}'.format(
4508 actionName,
4509 task.info.result))
4510 else:
4511 self.logger.info('Task {} completed successfully.'.format(actionName))
4512 else:
4513 self.logger.error('{} did not complete successfully: {} '.format(
4514 actionName,
4515 task.info.error)
4516 )
4517
4518 return task.info.result
4519
4520 def add_pci_to_vm(self,host_object, vm_object, host_pci_dev):
4521 """
4522 Method to add pci device in given VM
4523
4524 Args:
4525 host_object - vSphere host object
4526 vm_object - vSphere VM object
4527 host_pci_dev - host_pci_dev must be one of the devices from the
4528 host_object.hardware.pciDevice list
4529 which is configured as a PCI passthrough device
4530
4531 Returns:
4532 task object
4533 """
4534 task = None
4535 if vm_object and host_object and host_pci_dev:
4536 try :
4537 #Add PCI device to VM
4538 pci_passthroughs = vm_object.environmentBrowser.QueryConfigTarget(host=None).pciPassthrough
4539 systemid_by_pciid = {item.pciDevice.id: item.systemId for item in pci_passthroughs}
4540
4541 if host_pci_dev.id not in systemid_by_pciid:
4542 self.logger.error("Device {} is not a passthrough device ".format(host_pci_dev))
4543 return None
4544
4545 deviceId = hex(host_pci_dev.deviceId % 2**16).lstrip('0x')
4546 backing = vim.VirtualPCIPassthroughDeviceBackingInfo(deviceId=deviceId,
4547 id=host_pci_dev.id,
4548 systemId=systemid_by_pciid[host_pci_dev.id],
4549 vendorId=host_pci_dev.vendorId,
4550 deviceName=host_pci_dev.deviceName)
4551
4552 hba_object = vim.VirtualPCIPassthrough(key=-100, backing=backing)
4553
4554 new_device_config = vim.VirtualDeviceConfigSpec(device=hba_object)
4555 new_device_config.operation = "add"
4556 vmConfigSpec = vim.vm.ConfigSpec()
4557 vmConfigSpec.deviceChange = [new_device_config]
4558
4559 task = vm_object.ReconfigVM_Task(spec=vmConfigSpec)
4560 self.logger.info("Adding PCI device {} into VM {} from host {} ".format(
4561 host_pci_dev, vm_object, host_object)
4562 )
4563 except Exception as exp:
4564 self.logger.error("Error occurred while adding pci devive {} to VM {}: {}".format(
4565 host_pci_dev,
4566 vm_object,
4567 exp))
4568 return task
4569
bhangare06312472017-03-30 05:49:07 -07004570 def get_vm_vcenter_info(self):
bhangarefda5f7c2017-01-12 23:50:34 -08004571 """
kateeb044522017-03-06 23:54:39 -08004572 Method to get details of vCenter and vm
bhangarefda5f7c2017-01-12 23:50:34 -08004573
4574 Args:
4575 vapp_uuid - uuid of vApp or VM
4576
4577 Returns:
4578 Moref Id of VM and deails of vCenter
4579 """
kateeb044522017-03-06 23:54:39 -08004580 vm_vcenter_info = {}
bhangarefda5f7c2017-01-12 23:50:34 -08004581
kateeb044522017-03-06 23:54:39 -08004582 if self.vcenter_ip is not None:
4583 vm_vcenter_info["vm_vcenter_ip"] = self.vcenter_ip
4584 else:
4585 raise vimconn.vimconnException(message="vCenter IP is not provided."\
4586 " Please provide vCenter IP while attaching datacenter to tenant in --config")
4587 if self.vcenter_port is not None:
4588 vm_vcenter_info["vm_vcenter_port"] = self.vcenter_port
4589 else:
4590 raise vimconn.vimconnException(message="vCenter port is not provided."\
4591 " Please provide vCenter port while attaching datacenter to tenant in --config")
4592 if self.vcenter_user is not None:
4593 vm_vcenter_info["vm_vcenter_user"] = self.vcenter_user
4594 else:
4595 raise vimconn.vimconnException(message="vCenter user is not provided."\
4596 " Please provide vCenter user while attaching datacenter to tenant in --config")
bhangarefda5f7c2017-01-12 23:50:34 -08004597
kateeb044522017-03-06 23:54:39 -08004598 if self.vcenter_password is not None:
4599 vm_vcenter_info["vm_vcenter_password"] = self.vcenter_password
4600 else:
4601 raise vimconn.vimconnException(message="vCenter user password is not provided."\
4602 " Please provide vCenter user password while attaching datacenter to tenant in --config")
bhangarefda5f7c2017-01-12 23:50:34 -08004603
bhangare06312472017-03-30 05:49:07 -07004604 return vm_vcenter_info
bhangarefda5f7c2017-01-12 23:50:34 -08004605
4606
4607 def get_vm_pci_details(self, vmuuid):
4608 """
4609 Method to get VM PCI device details from vCenter
4610
4611 Args:
4612 vm_obj - vSphere VM object
4613
4614 Returns:
4615 dict of PCI devives attached to VM
4616
4617 """
4618 vm_pci_devices_info = {}
4619 try:
bhangare06312472017-03-30 05:49:07 -07004620 vcenter_conect, content = self.get_vcenter_content()
4621 vm_moref_id = self.get_vm_moref_id(vmuuid)
4622 if vm_moref_id:
bhangarefda5f7c2017-01-12 23:50:34 -08004623 #Get VM and its host
kateeb044522017-03-06 23:54:39 -08004624 if content:
bhangare06312472017-03-30 05:49:07 -07004625 host_obj, vm_obj = self.get_vm_obj(content, vm_moref_id)
kateeb044522017-03-06 23:54:39 -08004626 if host_obj and vm_obj:
4627 vm_pci_devices_info["host_name"]= host_obj.name
4628 vm_pci_devices_info["host_ip"]= host_obj.config.network.vnic[0].spec.ip.ipAddress
4629 for device in vm_obj.config.hardware.device:
4630 if type(device) == vim.vm.device.VirtualPCIPassthrough:
4631 device_details={'devide_id':device.backing.id,
4632 'pciSlotNumber':device.slotInfo.pciSlotNumber,
4633 }
4634 vm_pci_devices_info[device.deviceInfo.label] = device_details
4635 else:
4636 self.logger.error("Can not connect to vCenter while getting "\
4637 "PCI devices infromationn")
4638 return vm_pci_devices_info
bhangarefda5f7c2017-01-12 23:50:34 -08004639 except Exception as exp:
kateeb044522017-03-06 23:54:39 -08004640 self.logger.error("Error occurred while getting VM infromationn"\
4641 " for VM : {}".format(exp))
4642 raise vimconn.vimconnException(message=exp)
bhangare0e571a92017-01-12 04:02:23 -08004643
Ravi Chamarty2fa47b42018-10-22 23:59:10 +00004644
4645 def remove_primary_network_adapter_from_all_vms(self, vapp):
4646 """
4647 Method to remove network adapter type to vm
4648 Args :
4649 vapp - VApp
4650 Returns:
4651 None
4652 """
4653
4654 self.logger.info("Removing network adapter from all VMs")
4655 for vms in vapp.get_all_vms():
4656 vm_id = vms.get('id').split(':')[-1]
4657
4658 url_rest_call = "{}/api/vApp/vm-{}/networkConnectionSection/".format(self.url, vm_id)
4659
4660 headers = {'Accept':'application/*+xml;version=' + API_VERSION,
4661 'x-vcloud-authorization': self.client._session.headers['x-vcloud-authorization']}
4662 response = self.perform_request(req_type='GET',
4663 url=url_rest_call,
4664 headers=headers)
4665
4666 if response.status_code == 403:
4667 response = self.retry_rest('GET', url_rest_call)
4668
4669 if response.status_code != 200:
4670 self.logger.error("REST call {} failed reason : {}"\
4671 "status code : {}".format(url_rest_call,
4672 response.content,
4673 response.status_code))
4674 raise vimconn.vimconnException("remove_primary_network_adapter : Failed to get "\
4675 "network connection section")
4676
4677 data = response.content
4678 data = data.split('<Link rel="edit"')[0]
4679
4680 headers['Content-Type'] = 'application/vnd.vmware.vcloud.networkConnectionSection+xml'
4681
4682 newdata = """<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
4683 <NetworkConnectionSection xmlns="http://www.vmware.com/vcloud/v1.5"
4684 xmlns:ovf="http://schemas.dmtf.org/ovf/envelope/1"
4685 xmlns:vssd="http://schemas.dmtf.org/wbem/wscim/1/cim-schema/2/CIM_VirtualSystemSettingData"
4686 xmlns:common="http://schemas.dmtf.org/wbem/wscim/1/common"
4687 xmlns:rasd="http://schemas.dmtf.org/wbem/wscim/1/cim-schema/2/CIM_ResourceAllocationSettingData"
4688 xmlns:vmw="http://www.vmware.com/schema/ovf"
4689 xmlns:ovfenv="http://schemas.dmtf.org/ovf/environment/1"
4690 xmlns:vmext="http://www.vmware.com/vcloud/extension/v1.5"
4691 xmlns:ns9="http://www.vmware.com/vcloud/versions"
4692 href="{url}" type="application/vnd.vmware.vcloud.networkConnectionSection+xml" ovf:required="false">
4693 <ovf:Info>Specifies the available VM network connections</ovf:Info>
4694 <PrimaryNetworkConnectionIndex>0</PrimaryNetworkConnectionIndex>
4695 <Link rel="edit" href="{url}" type="application/vnd.vmware.vcloud.networkConnectionSection+xml"/>
4696 </NetworkConnectionSection>""".format(url=url_rest_call)
4697 response = self.perform_request(req_type='PUT',
4698 url=url_rest_call,
4699 headers=headers,
4700 data=newdata)
4701
4702 if response.status_code == 403:
4703 add_headers = {'Content-Type': headers['Content-Type']}
4704 response = self.retry_rest('PUT', url_rest_call, add_headers, newdata)
4705
4706 if response.status_code != 202:
4707 self.logger.error("REST call {} failed reason : {}"\
4708 "status code : {} ".format(url_rest_call,
4709 response.content,
4710 response.status_code))
4711 raise vimconn.vimconnException("remove_primary_network_adapter : Failed to update "\
4712 "network connection section")
4713 else:
4714 nic_task = self.get_task_from_response(response.content)
4715 result = self.client.get_task_monitor().wait_for_success(task=nic_task)
4716 if result.get('status') == 'success':
4717 self.logger.info("remove_primary_network_adapter(): VM {} conneced to "\
4718 "default NIC type".format(vm_id))
4719 else:
4720 self.logger.error("remove_primary_network_adapter(): VM {} failed to "\
4721 "connect NIC type".format(vm_id))
4722
kasardc1f02e2017-03-25 07:20:30 -07004723 def add_network_adapter_to_vms(self, vapp, network_name, primary_nic_index, nicIndex, net, nic_type=None):
kasar3ac5dc42017-03-15 06:28:22 -07004724 """
4725 Method to add network adapter type to vm
4726 Args :
4727 network_name - name of network
4728 primary_nic_index - int value for primary nic index
4729 nicIndex - int value for nic index
4730 nic_type - specify model name to which add to vm
4731 Returns:
4732 None
4733 """
kasar3ac5dc42017-03-15 06:28:22 -07004734
Ravi Chamarty2fa47b42018-10-22 23:59:10 +00004735 self.logger.info("Add network adapter to VM: network_name {} nicIndex {} nic_type {}".\
4736 format(network_name, nicIndex, nic_type))
kasar4cb6e902017-03-18 00:17:27 -07004737 try:
kasard2963622017-03-31 05:53:17 -07004738 ip_address = None
kasardc1f02e2017-03-25 07:20:30 -07004739 floating_ip = False
kasarc5bf2932018-03-09 04:15:22 -08004740 mac_address = None
kasardc1f02e2017-03-25 07:20:30 -07004741 if 'floating_ip' in net: floating_ip = net['floating_ip']
kasard2963622017-03-31 05:53:17 -07004742
4743 # Stub for ip_address feature
4744 if 'ip_address' in net: ip_address = net['ip_address']
4745
kasarc5bf2932018-03-09 04:15:22 -08004746 if 'mac_address' in net: mac_address = net['mac_address']
4747
kasard2963622017-03-31 05:53:17 -07004748 if floating_ip:
4749 allocation_mode = "POOL"
4750 elif ip_address:
4751 allocation_mode = "MANUAL"
4752 else:
4753 allocation_mode = "DHCP"
kasardc1f02e2017-03-25 07:20:30 -07004754
kasar3ac5dc42017-03-15 06:28:22 -07004755 if not nic_type:
kasarc5bf2932018-03-09 04:15:22 -08004756 for vms in vapp.get_all_vms():
4757 vm_id = vms.get('id').split(':')[-1]
kasar3ac5dc42017-03-15 06:28:22 -07004758
kasarc5bf2932018-03-09 04:15:22 -08004759 url_rest_call = "{}/api/vApp/vm-{}/networkConnectionSection/".format(self.url, vm_id)
kasar3ac5dc42017-03-15 06:28:22 -07004760
kasarc5bf2932018-03-09 04:15:22 -08004761 headers = {'Accept':'application/*+xml;version=' + API_VERSION,
sbhangarea8e5b782018-06-21 02:10:03 -07004762 'x-vcloud-authorization': self.client._session.headers['x-vcloud-authorization']}
kasarc5bf2932018-03-09 04:15:22 -08004763 response = self.perform_request(req_type='GET',
4764 url=url_rest_call,
4765 headers=headers)
bhangare1a0b97c2017-06-21 02:20:15 -07004766
4767 if response.status_code == 403:
4768 response = self.retry_rest('GET', url_rest_call)
4769
kasar3ac5dc42017-03-15 06:28:22 -07004770 if response.status_code != 200:
kasar4cb6e902017-03-18 00:17:27 -07004771 self.logger.error("REST call {} failed reason : {}"\
4772 "status code : {}".format(url_rest_call,
4773 response.content,
4774 response.status_code))
4775 raise vimconn.vimconnException("add_network_adapter_to_vms : Failed to get "\
4776 "network connection section")
kasar3ac5dc42017-03-15 06:28:22 -07004777
4778 data = response.content
kasarc5bf2932018-03-09 04:15:22 -08004779 data = data.split('<Link rel="edit"')[0]
kasar3ac5dc42017-03-15 06:28:22 -07004780 if '<PrimaryNetworkConnectionIndex>' not in data:
Ravi Chamarty2fa47b42018-10-22 23:59:10 +00004781 self.logger.debug("add_network_adapter PrimaryNIC not in data")
kasar3ac5dc42017-03-15 06:28:22 -07004782 item = """<PrimaryNetworkConnectionIndex>{}</PrimaryNetworkConnectionIndex>
4783 <NetworkConnection network="{}">
4784 <NetworkConnectionIndex>{}</NetworkConnectionIndex>
4785 <IsConnected>true</IsConnected>
kasardc1f02e2017-03-25 07:20:30 -07004786 <IpAddressAllocationMode>{}</IpAddressAllocationMode>
4787 </NetworkConnection>""".format(primary_nic_index, network_name, nicIndex,
4788 allocation_mode)
kasard2963622017-03-31 05:53:17 -07004789 # Stub for ip_address feature
4790 if ip_address:
4791 ip_tag = '<IpAddress>{}</IpAddress>'.format(ip_address)
4792 item = item.replace('</NetworkConnectionIndex>\n','</NetworkConnectionIndex>\n{}\n'.format(ip_tag))
kasardc1f02e2017-03-25 07:20:30 -07004793
kasarc5bf2932018-03-09 04:15:22 -08004794 if mac_address:
4795 mac_tag = '<MACAddress>{}</MACAddress>'.format(mac_address)
4796 item = item.replace('</IsConnected>\n','</IsConnected>\n{}\n'.format(mac_tag))
4797
4798 data = data.replace('</ovf:Info>\n','</ovf:Info>\n{}\n</NetworkConnectionSection>'.format(item))
kasar3ac5dc42017-03-15 06:28:22 -07004799 else:
Ravi Chamarty2fa47b42018-10-22 23:59:10 +00004800 self.logger.debug("add_network_adapter PrimaryNIC in data")
kasar3ac5dc42017-03-15 06:28:22 -07004801 new_item = """<NetworkConnection network="{}">
4802 <NetworkConnectionIndex>{}</NetworkConnectionIndex>
4803 <IsConnected>true</IsConnected>
kasardc1f02e2017-03-25 07:20:30 -07004804 <IpAddressAllocationMode>{}</IpAddressAllocationMode>
4805 </NetworkConnection>""".format(network_name, nicIndex,
4806 allocation_mode)
kasard2963622017-03-31 05:53:17 -07004807 # Stub for ip_address feature
4808 if ip_address:
4809 ip_tag = '<IpAddress>{}</IpAddress>'.format(ip_address)
4810 new_item = new_item.replace('</NetworkConnectionIndex>\n','</NetworkConnectionIndex>\n{}\n'.format(ip_tag))
kasardc1f02e2017-03-25 07:20:30 -07004811
kasarc5bf2932018-03-09 04:15:22 -08004812 if mac_address:
4813 mac_tag = '<MACAddress>{}</MACAddress>'.format(mac_address)
4814 new_item = new_item.replace('</IsConnected>\n','</IsConnected>\n{}\n'.format(mac_tag))
kasar3ac5dc42017-03-15 06:28:22 -07004815
kasarc5bf2932018-03-09 04:15:22 -08004816 data = data + new_item + '</NetworkConnectionSection>'
4817
kasar3ac5dc42017-03-15 06:28:22 -07004818 headers['Content-Type'] = 'application/vnd.vmware.vcloud.networkConnectionSection+xml'
kasarc5bf2932018-03-09 04:15:22 -08004819
4820 response = self.perform_request(req_type='PUT',
4821 url=url_rest_call,
4822 headers=headers,
4823 data=data)
bhangare1a0b97c2017-06-21 02:20:15 -07004824
4825 if response.status_code == 403:
4826 add_headers = {'Content-Type': headers['Content-Type']}
4827 response = self.retry_rest('PUT', url_rest_call, add_headers, data)
4828
kasar3ac5dc42017-03-15 06:28:22 -07004829 if response.status_code != 202:
kasar4cb6e902017-03-18 00:17:27 -07004830 self.logger.error("REST call {} failed reason : {}"\
4831 "status code : {} ".format(url_rest_call,
4832 response.content,
4833 response.status_code))
4834 raise vimconn.vimconnException("add_network_adapter_to_vms : Failed to update "\
4835 "network connection section")
kasar3ac5dc42017-03-15 06:28:22 -07004836 else:
kasarc5bf2932018-03-09 04:15:22 -08004837 nic_task = self.get_task_from_response(response.content)
sbhangarea8e5b782018-06-21 02:10:03 -07004838 result = self.client.get_task_monitor().wait_for_success(task=nic_task)
kasarc5bf2932018-03-09 04:15:22 -08004839 if result.get('status') == 'success':
kasar3ac5dc42017-03-15 06:28:22 -07004840 self.logger.info("add_network_adapter_to_vms(): VM {} conneced to "\
4841 "default NIC type".format(vm_id))
4842 else:
4843 self.logger.error("add_network_adapter_to_vms(): VM {} failed to "\
4844 "connect NIC type".format(vm_id))
4845 else:
kasarc5bf2932018-03-09 04:15:22 -08004846 for vms in vapp.get_all_vms():
4847 vm_id = vms.get('id').split(':')[-1]
kasar3ac5dc42017-03-15 06:28:22 -07004848
kasarc5bf2932018-03-09 04:15:22 -08004849 url_rest_call = "{}/api/vApp/vm-{}/networkConnectionSection/".format(self.url, vm_id)
4850
4851 headers = {'Accept':'application/*+xml;version=' + API_VERSION,
4852 'x-vcloud-authorization': self.client._session.headers['x-vcloud-authorization']}
4853 response = self.perform_request(req_type='GET',
4854 url=url_rest_call,
4855 headers=headers)
bhangare1a0b97c2017-06-21 02:20:15 -07004856
4857 if response.status_code == 403:
4858 response = self.retry_rest('GET', url_rest_call)
4859
kasar3ac5dc42017-03-15 06:28:22 -07004860 if response.status_code != 200:
kasar4cb6e902017-03-18 00:17:27 -07004861 self.logger.error("REST call {} failed reason : {}"\
4862 "status code : {}".format(url_rest_call,
4863 response.content,
4864 response.status_code))
4865 raise vimconn.vimconnException("add_network_adapter_to_vms : Failed to get "\
4866 "network connection section")
kasar3ac5dc42017-03-15 06:28:22 -07004867 data = response.content
kasarc5bf2932018-03-09 04:15:22 -08004868 data = data.split('<Link rel="edit"')[0]
kasar3ac5dc42017-03-15 06:28:22 -07004869 if '<PrimaryNetworkConnectionIndex>' not in data:
Ravi Chamarty2fa47b42018-10-22 23:59:10 +00004870 self.logger.debug("add_network_adapter PrimaryNIC not in data nic_type {}".format(nic_type))
kasar3ac5dc42017-03-15 06:28:22 -07004871 item = """<PrimaryNetworkConnectionIndex>{}</PrimaryNetworkConnectionIndex>
4872 <NetworkConnection network="{}">
4873 <NetworkConnectionIndex>{}</NetworkConnectionIndex>
4874 <IsConnected>true</IsConnected>
kasardc1f02e2017-03-25 07:20:30 -07004875 <IpAddressAllocationMode>{}</IpAddressAllocationMode>
kasar3ac5dc42017-03-15 06:28:22 -07004876 <NetworkAdapterType>{}</NetworkAdapterType>
kasardc1f02e2017-03-25 07:20:30 -07004877 </NetworkConnection>""".format(primary_nic_index, network_name, nicIndex,
4878 allocation_mode, nic_type)
kasard2963622017-03-31 05:53:17 -07004879 # Stub for ip_address feature
4880 if ip_address:
4881 ip_tag = '<IpAddress>{}</IpAddress>'.format(ip_address)
4882 item = item.replace('</NetworkConnectionIndex>\n','</NetworkConnectionIndex>\n{}\n'.format(ip_tag))
kasardc1f02e2017-03-25 07:20:30 -07004883
kasarc5bf2932018-03-09 04:15:22 -08004884 if mac_address:
4885 mac_tag = '<MACAddress>{}</MACAddress>'.format(mac_address)
sbhangarea8e5b782018-06-21 02:10:03 -07004886 item = item.replace('</IsConnected>\n','</IsConnected>\n{}\n'.format(mac_tag))
kasarc5bf2932018-03-09 04:15:22 -08004887
4888 data = data.replace('</ovf:Info>\n','</ovf:Info>\n{}\n</NetworkConnectionSection>'.format(item))
kasar3ac5dc42017-03-15 06:28:22 -07004889 else:
Ravi Chamarty2fa47b42018-10-22 23:59:10 +00004890 self.logger.debug("add_network_adapter PrimaryNIC in data nic_type {}".format(nic_type))
kasar3ac5dc42017-03-15 06:28:22 -07004891 new_item = """<NetworkConnection network="{}">
4892 <NetworkConnectionIndex>{}</NetworkConnectionIndex>
4893 <IsConnected>true</IsConnected>
kasardc1f02e2017-03-25 07:20:30 -07004894 <IpAddressAllocationMode>{}</IpAddressAllocationMode>
kasar3ac5dc42017-03-15 06:28:22 -07004895 <NetworkAdapterType>{}</NetworkAdapterType>
kasardc1f02e2017-03-25 07:20:30 -07004896 </NetworkConnection>""".format(network_name, nicIndex,
4897 allocation_mode, nic_type)
kasard2963622017-03-31 05:53:17 -07004898 # Stub for ip_address feature
4899 if ip_address:
4900 ip_tag = '<IpAddress>{}</IpAddress>'.format(ip_address)
4901 new_item = new_item.replace('</NetworkConnectionIndex>\n','</NetworkConnectionIndex>\n{}\n'.format(ip_tag))
kasardc1f02e2017-03-25 07:20:30 -07004902
kasarc5bf2932018-03-09 04:15:22 -08004903 if mac_address:
4904 mac_tag = '<MACAddress>{}</MACAddress>'.format(mac_address)
4905 new_item = new_item.replace('</IsConnected>\n','</IsConnected>\n{}\n'.format(mac_tag))
kasar3ac5dc42017-03-15 06:28:22 -07004906
kasarc5bf2932018-03-09 04:15:22 -08004907 data = data + new_item + '</NetworkConnectionSection>'
4908
kasar3ac5dc42017-03-15 06:28:22 -07004909 headers['Content-Type'] = 'application/vnd.vmware.vcloud.networkConnectionSection+xml'
kasarc5bf2932018-03-09 04:15:22 -08004910
4911 response = self.perform_request(req_type='PUT',
4912 url=url_rest_call,
4913 headers=headers,
4914 data=data)
bhangare1a0b97c2017-06-21 02:20:15 -07004915
4916 if response.status_code == 403:
4917 add_headers = {'Content-Type': headers['Content-Type']}
4918 response = self.retry_rest('PUT', url_rest_call, add_headers, data)
kasar3ac5dc42017-03-15 06:28:22 -07004919
4920 if response.status_code != 202:
kasar4cb6e902017-03-18 00:17:27 -07004921 self.logger.error("REST call {} failed reason : {}"\
4922 "status code : {}".format(url_rest_call,
4923 response.content,
4924 response.status_code))
4925 raise vimconn.vimconnException("add_network_adapter_to_vms : Failed to update "\
4926 "network connection section")
kasar3ac5dc42017-03-15 06:28:22 -07004927 else:
kasarc5bf2932018-03-09 04:15:22 -08004928 nic_task = self.get_task_from_response(response.content)
4929 result = self.client.get_task_monitor().wait_for_success(task=nic_task)
4930 if result.get('status') == 'success':
kasar3ac5dc42017-03-15 06:28:22 -07004931 self.logger.info("add_network_adapter_to_vms(): VM {} "\
4932 "conneced to NIC type {}".format(vm_id, nic_type))
4933 else:
4934 self.logger.error("add_network_adapter_to_vms(): VM {} "\
4935 "failed to connect NIC type {}".format(vm_id, nic_type))
4936 except Exception as exp:
kasar4cb6e902017-03-18 00:17:27 -07004937 self.logger.error("add_network_adapter_to_vms() : exception occurred "\
4938 "while adding Network adapter")
4939 raise vimconn.vimconnException(message=exp)
kasarde691232017-03-25 03:37:31 -07004940
4941
4942 def set_numa_affinity(self, vmuuid, paired_threads_id):
4943 """
4944 Method to assign numa affinity in vm configuration parammeters
4945 Args :
4946 vmuuid - vm uuid
4947 paired_threads_id - one or more virtual processor
4948 numbers
4949 Returns:
4950 return if True
4951 """
4952 try:
kasar204e39e2018-01-25 00:57:02 -08004953 vcenter_conect, content = self.get_vcenter_content()
4954 vm_moref_id = self.get_vm_moref_id(vmuuid)
kasarde691232017-03-25 03:37:31 -07004955
kasar204e39e2018-01-25 00:57:02 -08004956 host_obj, vm_obj = self.get_vm_obj(content ,vm_moref_id)
4957 if vm_obj:
4958 config_spec = vim.vm.ConfigSpec()
4959 config_spec.extraConfig = []
4960 opt = vim.option.OptionValue()
4961 opt.key = 'numa.nodeAffinity'
4962 opt.value = str(paired_threads_id)
4963 config_spec.extraConfig.append(opt)
4964 task = vm_obj.ReconfigVM_Task(config_spec)
4965 if task:
4966 result = self.wait_for_vcenter_task(task, vcenter_conect)
4967 extra_config = vm_obj.config.extraConfig
4968 flag = False
4969 for opts in extra_config:
4970 if 'numa.nodeAffinity' in opts.key:
4971 flag = True
4972 self.logger.info("set_numa_affinity: Sucessfully assign numa affinity "\
4973 "value {} for vm {}".format(opt.value, vm_obj))
4974 if flag:
4975 return
4976 else:
4977 self.logger.error("set_numa_affinity: Failed to assign numa affinity")
kasarde691232017-03-25 03:37:31 -07004978 except Exception as exp:
4979 self.logger.error("set_numa_affinity : exception occurred while setting numa affinity "\
4980 "for VM {} : {}".format(vm_obj, vm_moref_id))
4981 raise vimconn.vimconnException("set_numa_affinity : Error {} failed to assign numa "\
4982 "affinity".format(exp))
kasardc1f02e2017-03-25 07:20:30 -07004983
4984
4985 def cloud_init(self, vapp, cloud_config):
4986 """
4987 Method to inject ssh-key
4988 vapp - vapp object
4989 cloud_config a dictionary with:
4990 'key-pairs': (optional) list of strings with the public key to be inserted to the default user
4991 'users': (optional) list of users to be inserted, each item is a dict with:
4992 'name': (mandatory) user name,
4993 'key-pairs': (optional) list of strings with the public key to be inserted to the user
tierno40e1bce2017-08-09 09:12:04 +02004994 'user-data': (optional) can be a string with the text script to be passed directly to cloud-init,
4995 or a list of strings, each one contains a script to be passed, usually with a MIMEmultipart file
kasardc1f02e2017-03-25 07:20:30 -07004996 'config-files': (optional). List of files to be transferred. Each item is a dict with:
4997 'dest': (mandatory) string with the destination absolute path
4998 'encoding': (optional, by default text). Can be one of:
4999 'b64', 'base64', 'gz', 'gz+b64', 'gz+base64', 'gzip+b64', 'gzip+base64'
5000 'content' (mandatory): string with the content of the file
5001 'permissions': (optional) string with file permissions, typically octal notation '0644'
5002 'owner': (optional) file owner, string with the format 'owner:group'
5003 'boot-data-drive': boolean to indicate if user-data must be passed using a boot drive (hard disk
5004 """
kasardc1f02e2017-03-25 07:20:30 -07005005 try:
kasar2aa50742017-08-08 02:11:22 -07005006 if not isinstance(cloud_config, dict):
5007 raise Exception("cloud_init : parameter cloud_config is not a dictionary")
5008 else:
kasardc1f02e2017-03-25 07:20:30 -07005009 key_pairs = []
5010 userdata = []
5011 if "key-pairs" in cloud_config:
5012 key_pairs = cloud_config["key-pairs"]
5013
5014 if "users" in cloud_config:
5015 userdata = cloud_config["users"]
5016
kasar2aa50742017-08-08 02:11:22 -07005017 self.logger.debug("cloud_init : Guest os customization started..")
5018 customize_script = self.format_script(key_pairs=key_pairs, users_list=userdata)
kasarc5bf2932018-03-09 04:15:22 -08005019 customize_script = customize_script.replace("&","&amp;")
kasar2aa50742017-08-08 02:11:22 -07005020 self.guest_customization(vapp, customize_script)
kasardc1f02e2017-03-25 07:20:30 -07005021
kasardc1f02e2017-03-25 07:20:30 -07005022 except Exception as exp:
5023 self.logger.error("cloud_init : exception occurred while injecting "\
5024 "ssh-key")
5025 raise vimconn.vimconnException("cloud_init : Error {} failed to inject "\
5026 "ssh-key".format(exp))
bhangare06312472017-03-30 05:49:07 -07005027
kasar2aa50742017-08-08 02:11:22 -07005028 def format_script(self, key_pairs=[], users_list=[]):
kasarc5bf2932018-03-09 04:15:22 -08005029 bash_script = """#!/bin/sh
kasar2aa50742017-08-08 02:11:22 -07005030 echo performing customization tasks with param $1 at `date "+DATE: %Y-%m-%d - TIME: %H:%M:%S"` >> /root/customization.log
5031 if [ "$1" = "precustomization" ];then
5032 echo performing precustomization tasks on `date "+DATE: %Y-%m-%d - TIME: %H:%M:%S"` >> /root/customization.log
5033 """
5034
5035 keys = "\n".join(key_pairs)
5036 if keys:
5037 keys_data = """
5038 if [ ! -d /root/.ssh ];then
5039 mkdir /root/.ssh
5040 chown root:root /root/.ssh
5041 chmod 700 /root/.ssh
5042 touch /root/.ssh/authorized_keys
5043 chown root:root /root/.ssh/authorized_keys
5044 chmod 600 /root/.ssh/authorized_keys
5045 # make centos with selinux happy
5046 which restorecon && restorecon -Rv /root/.ssh
5047 else
5048 touch /root/.ssh/authorized_keys
5049 chown root:root /root/.ssh/authorized_keys
5050 chmod 600 /root/.ssh/authorized_keys
5051 fi
5052 echo '{key}' >> /root/.ssh/authorized_keys
5053 """.format(key=keys)
5054
5055 bash_script+= keys_data
5056
5057 for user in users_list:
5058 if 'name' in user: user_name = user['name']
5059 if 'key-pairs' in user:
5060 user_keys = "\n".join(user['key-pairs'])
5061 else:
5062 user_keys = None
5063
5064 add_user_name = """
5065 useradd -d /home/{user_name} -m -g users -s /bin/bash {user_name}
5066 """.format(user_name=user_name)
5067
5068 bash_script+= add_user_name
5069
5070 if user_keys:
5071 user_keys_data = """
5072 mkdir /home/{user_name}/.ssh
5073 chown {user_name}:{user_name} /home/{user_name}/.ssh
5074 chmod 700 /home/{user_name}/.ssh
5075 touch /home/{user_name}/.ssh/authorized_keys
5076 chown {user_name}:{user_name} /home/{user_name}/.ssh/authorized_keys
5077 chmod 600 /home/{user_name}/.ssh/authorized_keys
5078 # make centos with selinux happy
5079 which restorecon && restorecon -Rv /home/{user_name}/.ssh
5080 echo '{user_key}' >> /home/{user_name}/.ssh/authorized_keys
5081 """.format(user_name=user_name,user_key=user_keys)
5082
5083 bash_script+= user_keys_data
5084
5085 return bash_script+"\n\tfi"
5086
5087 def guest_customization(self, vapp, customize_script):
5088 """
5089 Method to customize guest os
5090 vapp - Vapp object
5091 customize_script - Customize script to be run at first boot of VM.
5092 """
kasarc5bf2932018-03-09 04:15:22 -08005093 for vm in vapp.get_all_vms():
5094 vm_id = vm.get('id').split(':')[-1]
sbhangarea8e5b782018-06-21 02:10:03 -07005095 vm_name = vm.get('name')
5096 vm_name = vm_name.replace('_','-')
5097
kasarc5bf2932018-03-09 04:15:22 -08005098 vm_customization_url = "{}/api/vApp/vm-{}/guestCustomizationSection/".format(self.url, vm_id)
5099 headers = {'Accept':'application/*+xml;version=' + API_VERSION,
5100 'x-vcloud-authorization': self.client._session.headers['x-vcloud-authorization']}
5101
5102 headers['Content-Type'] = "application/vnd.vmware.vcloud.guestCustomizationSection+xml"
5103
5104 data = """<GuestCustomizationSection
5105 xmlns="http://www.vmware.com/vcloud/v1.5"
5106 xmlns:ovf="http://schemas.dmtf.org/ovf/envelope/1"
5107 ovf:required="false" href="{}" type="application/vnd.vmware.vcloud.guestCustomizationSection+xml">
5108 <ovf:Info>Specifies Guest OS Customization Settings</ovf:Info>
5109 <Enabled>true</Enabled>
5110 <ChangeSid>false</ChangeSid>
5111 <VirtualMachineId>{}</VirtualMachineId>
5112 <JoinDomainEnabled>false</JoinDomainEnabled>
5113 <UseOrgSettings>false</UseOrgSettings>
5114 <AdminPasswordEnabled>false</AdminPasswordEnabled>
5115 <AdminPasswordAuto>true</AdminPasswordAuto>
5116 <AdminAutoLogonEnabled>false</AdminAutoLogonEnabled>
5117 <AdminAutoLogonCount>0</AdminAutoLogonCount>
5118 <ResetPasswordRequired>false</ResetPasswordRequired>
5119 <CustomizationScript>{}</CustomizationScript>
5120 <ComputerName>{}</ComputerName>
5121 <Link href="{}" type="application/vnd.vmware.vcloud.guestCustomizationSection+xml" rel="edit"/>
sbhangarea8e5b782018-06-21 02:10:03 -07005122 </GuestCustomizationSection>
kasarc5bf2932018-03-09 04:15:22 -08005123 """.format(vm_customization_url,
5124 vm_id,
5125 customize_script,
5126 vm_name,
sbhangarea8e5b782018-06-21 02:10:03 -07005127 vm_customization_url)
kasarc5bf2932018-03-09 04:15:22 -08005128
5129 response = self.perform_request(req_type='PUT',
5130 url=vm_customization_url,
5131 headers=headers,
5132 data=data)
5133 if response.status_code == 202:
5134 guest_task = self.get_task_from_response(response.content)
5135 self.client.get_task_monitor().wait_for_success(task=guest_task)
kasar2aa50742017-08-08 02:11:22 -07005136 self.logger.info("guest_customization : customized guest os task "\
5137 "completed for VM {}".format(vm_name))
5138 else:
5139 self.logger.error("guest_customization : task for customized guest os"\
5140 "failed for VM {}".format(vm_name))
5141 raise vimconn.vimconnException("guest_customization : failed to perform"\
5142 "guest os customization on VM {}".format(vm_name))
bhangare06312472017-03-30 05:49:07 -07005143
bhangare1a0b97c2017-06-21 02:20:15 -07005144 def add_new_disk(self, vapp_uuid, disk_size):
bhangare06312472017-03-30 05:49:07 -07005145 """
5146 Method to create an empty vm disk
5147
5148 Args:
5149 vapp_uuid - is vapp identifier.
5150 disk_size - size of disk to be created in GB
5151
5152 Returns:
5153 None
5154 """
5155 status = False
5156 vm_details = None
5157 try:
5158 #Disk size in GB, convert it into MB
5159 if disk_size is not None:
5160 disk_size_mb = int(disk_size) * 1024
5161 vm_details = self.get_vapp_details_rest(vapp_uuid)
5162
5163 if vm_details and "vm_virtual_hardware" in vm_details:
5164 self.logger.info("Adding disk to VM: {} disk size:{}GB".format(vm_details["name"], disk_size))
5165 disk_href = vm_details["vm_virtual_hardware"]["disk_edit_href"]
bhangare1a0b97c2017-06-21 02:20:15 -07005166 status = self.add_new_disk_rest(disk_href, disk_size_mb)
bhangare06312472017-03-30 05:49:07 -07005167
5168 except Exception as exp:
5169 msg = "Error occurred while creating new disk {}.".format(exp)
5170 self.rollback_newvm(vapp_uuid, msg)
5171
5172 if status:
5173 self.logger.info("Added new disk to VM: {} disk size:{}GB".format(vm_details["name"], disk_size))
5174 else:
5175 #If failed to add disk, delete VM
5176 msg = "add_new_disk: Failed to add new disk to {}".format(vm_details["name"])
5177 self.rollback_newvm(vapp_uuid, msg)
5178
5179
bhangare1a0b97c2017-06-21 02:20:15 -07005180 def add_new_disk_rest(self, disk_href, disk_size_mb):
bhangare06312472017-03-30 05:49:07 -07005181 """
5182 Retrives vApp Disks section & add new empty disk
5183
5184 Args:
5185 disk_href: Disk section href to addd disk
5186 disk_size_mb: Disk size in MB
5187
5188 Returns: Status of add new disk task
5189 """
5190 status = False
kasarc5bf2932018-03-09 04:15:22 -08005191 if self.client._session:
5192 headers = {'Accept':'application/*+xml;version=' + API_VERSION,
sbhangarea8e5b782018-06-21 02:10:03 -07005193 'x-vcloud-authorization': self.client._session.headers['x-vcloud-authorization']}
kasarc5bf2932018-03-09 04:15:22 -08005194 response = self.perform_request(req_type='GET',
5195 url=disk_href,
5196 headers=headers)
bhangare1a0b97c2017-06-21 02:20:15 -07005197
5198 if response.status_code == 403:
5199 response = self.retry_rest('GET', disk_href)
bhangare06312472017-03-30 05:49:07 -07005200
5201 if response.status_code != requests.codes.ok:
5202 self.logger.error("add_new_disk_rest: GET REST API call {} failed. Return status code {}"
5203 .format(disk_href, response.status_code))
5204 return status
5205 try:
5206 #Find but type & max of instance IDs assigned to disks
5207 lxmlroot_respond = lxmlElementTree.fromstring(response.content)
5208 namespaces = {prefix:uri for prefix,uri in lxmlroot_respond.nsmap.iteritems() if prefix}
kasarc5bf2932018-03-09 04:15:22 -08005209 #For python3
5210 #namespaces = {prefix:uri for prefix,uri in lxmlroot_respond.nsmap.items() if prefix}
bhangare06312472017-03-30 05:49:07 -07005211 namespaces["xmlns"]= "http://www.vmware.com/vcloud/v1.5"
5212 instance_id = 0
5213 for item in lxmlroot_respond.iterfind('xmlns:Item',namespaces):
5214 if item.find("rasd:Description",namespaces).text == "Hard disk":
5215 inst_id = int(item.find("rasd:InstanceID" ,namespaces).text)
5216 if inst_id > instance_id:
5217 instance_id = inst_id
5218 disk_item = item.find("rasd:HostResource" ,namespaces)
5219 bus_subtype = disk_item.attrib["{"+namespaces['xmlns']+"}busSubType"]
5220 bus_type = disk_item.attrib["{"+namespaces['xmlns']+"}busType"]
5221
5222 instance_id = instance_id + 1
5223 new_item = """<Item>
5224 <rasd:Description>Hard disk</rasd:Description>
5225 <rasd:ElementName>New disk</rasd:ElementName>
5226 <rasd:HostResource
5227 xmlns:vcloud="http://www.vmware.com/vcloud/v1.5"
5228 vcloud:capacity="{}"
5229 vcloud:busSubType="{}"
5230 vcloud:busType="{}"></rasd:HostResource>
5231 <rasd:InstanceID>{}</rasd:InstanceID>
5232 <rasd:ResourceType>17</rasd:ResourceType>
5233 </Item>""".format(disk_size_mb, bus_subtype, bus_type, instance_id)
5234
5235 new_data = response.content
5236 #Add new item at the bottom
5237 new_data = new_data.replace('</Item>\n</RasdItemsList>', '</Item>\n{}\n</RasdItemsList>'.format(new_item))
5238
5239 # Send PUT request to modify virtual hardware section with new disk
bhangare06312472017-03-30 05:49:07 -07005240 headers['Content-Type'] = 'application/vnd.vmware.vcloud.rasdItemsList+xml; charset=ISO-8859-1'
5241
kasarc5bf2932018-03-09 04:15:22 -08005242 response = self.perform_request(req_type='PUT',
5243 url=disk_href,
5244 data=new_data,
5245 headers=headers)
bhangare1a0b97c2017-06-21 02:20:15 -07005246
5247 if response.status_code == 403:
5248 add_headers = {'Content-Type': headers['Content-Type']}
5249 response = self.retry_rest('PUT', disk_href, add_headers, new_data)
bhangare06312472017-03-30 05:49:07 -07005250
5251 if response.status_code != 202:
5252 self.logger.error("PUT REST API call {} failed. Return status code {}. Response Content:{}"
5253 .format(disk_href, response.status_code, response.content))
5254 else:
kasarc5bf2932018-03-09 04:15:22 -08005255 add_disk_task = self.get_task_from_response(response.content)
5256 result = self.client.get_task_monitor().wait_for_success(task=add_disk_task)
sbhangarea8e5b782018-06-21 02:10:03 -07005257 if result.get('status') == 'success':
kasarc5bf2932018-03-09 04:15:22 -08005258 status = True
5259 else:
sbhangarea8e5b782018-06-21 02:10:03 -07005260 self.logger.error("Add new disk REST task failed to add {} MB disk".format(disk_size_mb))
bhangare06312472017-03-30 05:49:07 -07005261
5262 except Exception as exp:
5263 self.logger.error("Error occurred calling rest api for creating new disk {}".format(exp))
5264
5265 return status
5266
5267
5268 def add_existing_disk(self, catalogs=None, image_id=None, size=None, template_name=None, vapp_uuid=None):
5269 """
5270 Method to add existing disk to vm
5271 Args :
5272 catalogs - List of VDC catalogs
5273 image_id - Catalog ID
5274 template_name - Name of template in catalog
5275 vapp_uuid - UUID of vApp
5276 Returns:
5277 None
5278 """
5279 disk_info = None
5280 vcenter_conect, content = self.get_vcenter_content()
5281 #find moref-id of vm in image
5282 catalog_vm_info = self.get_vapp_template_details(catalogs=catalogs,
5283 image_id=image_id,
5284 )
5285
5286 if catalog_vm_info and "vm_vcenter_info" in catalog_vm_info:
5287 if "vm_moref_id" in catalog_vm_info["vm_vcenter_info"]:
5288 catalog_vm_moref_id = catalog_vm_info["vm_vcenter_info"].get("vm_moref_id", None)
5289 if catalog_vm_moref_id:
5290 self.logger.info("Moref_id of VM in catalog : {}" .format(catalog_vm_moref_id))
5291 host, catalog_vm_obj = self.get_vm_obj(content, catalog_vm_moref_id)
5292 if catalog_vm_obj:
5293 #find existing disk
5294 disk_info = self.find_disk(catalog_vm_obj)
5295 else:
5296 exp_msg = "No VM with image id {} found".format(image_id)
5297 self.rollback_newvm(vapp_uuid, exp_msg, exp_type="NotFound")
5298 else:
5299 exp_msg = "No Image found with image ID {} ".format(image_id)
5300 self.rollback_newvm(vapp_uuid, exp_msg, exp_type="NotFound")
5301
5302 if disk_info:
5303 self.logger.info("Existing disk_info : {}".format(disk_info))
5304 #get VM
5305 vm_moref_id = self.get_vm_moref_id(vapp_uuid)
5306 host, vm_obj = self.get_vm_obj(content, vm_moref_id)
5307 if vm_obj:
5308 status = self.add_disk(vcenter_conect=vcenter_conect,
5309 vm=vm_obj,
5310 disk_info=disk_info,
5311 size=size,
5312 vapp_uuid=vapp_uuid
5313 )
5314 if status:
5315 self.logger.info("Disk from image id {} added to {}".format(image_id,
5316 vm_obj.config.name)
5317 )
5318 else:
5319 msg = "No disk found with image id {} to add in VM {}".format(
5320 image_id,
5321 vm_obj.config.name)
5322 self.rollback_newvm(vapp_uuid, msg, exp_type="NotFound")
5323
5324
5325 def find_disk(self, vm_obj):
5326 """
5327 Method to find details of existing disk in VM
5328 Args :
5329 vm_obj - vCenter object of VM
5330 image_id - Catalog ID
5331 Returns:
5332 disk_info : dict of disk details
5333 """
5334 disk_info = {}
5335 if vm_obj:
5336 try:
5337 devices = vm_obj.config.hardware.device
5338 for device in devices:
5339 if type(device) is vim.vm.device.VirtualDisk:
5340 if isinstance(device.backing,vim.vm.device.VirtualDisk.FlatVer2BackingInfo) and hasattr(device.backing, 'fileName'):
5341 disk_info["full_path"] = device.backing.fileName
5342 disk_info["datastore"] = device.backing.datastore
5343 disk_info["capacityKB"] = device.capacityInKB
5344 break
5345 except Exception as exp:
5346 self.logger.error("find_disk() : exception occurred while "\
5347 "getting existing disk details :{}".format(exp))
5348 return disk_info
5349
5350
5351 def add_disk(self, vcenter_conect=None, vm=None, size=None, vapp_uuid=None, disk_info={}):
5352 """
5353 Method to add existing disk in VM
5354 Args :
5355 vcenter_conect - vCenter content object
5356 vm - vCenter vm object
5357 disk_info : dict of disk details
5358 Returns:
5359 status : status of add disk task
5360 """
5361 datastore = disk_info["datastore"] if "datastore" in disk_info else None
5362 fullpath = disk_info["full_path"] if "full_path" in disk_info else None
5363 capacityKB = disk_info["capacityKB"] if "capacityKB" in disk_info else None
5364 if size is not None:
5365 #Convert size from GB to KB
5366 sizeKB = int(size) * 1024 * 1024
5367 #compare size of existing disk and user given size.Assign whicherver is greater
5368 self.logger.info("Add Existing disk : sizeKB {} , capacityKB {}".format(
5369 sizeKB, capacityKB))
5370 if sizeKB > capacityKB:
5371 capacityKB = sizeKB
5372
5373 if datastore and fullpath and capacityKB:
5374 try:
5375 spec = vim.vm.ConfigSpec()
5376 # get all disks on a VM, set unit_number to the next available
5377 unit_number = 0
5378 for dev in vm.config.hardware.device:
5379 if hasattr(dev.backing, 'fileName'):
5380 unit_number = int(dev.unitNumber) + 1
5381 # unit_number 7 reserved for scsi controller
5382 if unit_number == 7:
5383 unit_number += 1
5384 if isinstance(dev, vim.vm.device.VirtualDisk):
5385 #vim.vm.device.VirtualSCSIController
5386 controller_key = dev.controllerKey
5387
5388 self.logger.info("Add Existing disk : unit number {} , controller key {}".format(
5389 unit_number, controller_key))
5390 # add disk here
5391 dev_changes = []
5392 disk_spec = vim.vm.device.VirtualDeviceSpec()
5393 disk_spec.operation = vim.vm.device.VirtualDeviceSpec.Operation.add
5394 disk_spec.device = vim.vm.device.VirtualDisk()
5395 disk_spec.device.backing = \
5396 vim.vm.device.VirtualDisk.FlatVer2BackingInfo()
5397 disk_spec.device.backing.thinProvisioned = True
5398 disk_spec.device.backing.diskMode = 'persistent'
5399 disk_spec.device.backing.datastore = datastore
5400 disk_spec.device.backing.fileName = fullpath
5401
5402 disk_spec.device.unitNumber = unit_number
5403 disk_spec.device.capacityInKB = capacityKB
5404 disk_spec.device.controllerKey = controller_key
5405 dev_changes.append(disk_spec)
5406 spec.deviceChange = dev_changes
5407 task = vm.ReconfigVM_Task(spec=spec)
5408 status = self.wait_for_vcenter_task(task, vcenter_conect)
5409 return status
5410 except Exception as exp:
5411 exp_msg = "add_disk() : exception {} occurred while adding disk "\
5412 "{} to vm {}".format(exp,
5413 fullpath,
5414 vm.config.name)
5415 self.rollback_newvm(vapp_uuid, exp_msg)
5416 else:
5417 msg = "add_disk() : Can not add disk to VM with disk info {} ".format(disk_info)
5418 self.rollback_newvm(vapp_uuid, msg)
5419
5420
5421 def get_vcenter_content(self):
5422 """
5423 Get the vsphere content object
5424 """
5425 try:
5426 vm_vcenter_info = self.get_vm_vcenter_info()
5427 except Exception as exp:
5428 self.logger.error("Error occurred while getting vCenter infromationn"\
5429 " for VM : {}".format(exp))
5430 raise vimconn.vimconnException(message=exp)
5431
5432 context = None
5433 if hasattr(ssl, '_create_unverified_context'):
5434 context = ssl._create_unverified_context()
5435
5436 vcenter_conect = SmartConnect(
5437 host=vm_vcenter_info["vm_vcenter_ip"],
5438 user=vm_vcenter_info["vm_vcenter_user"],
5439 pwd=vm_vcenter_info["vm_vcenter_password"],
5440 port=int(vm_vcenter_info["vm_vcenter_port"]),
5441 sslContext=context
5442 )
5443 atexit.register(Disconnect, vcenter_conect)
5444 content = vcenter_conect.RetrieveContent()
5445 return vcenter_conect, content
5446
5447
5448 def get_vm_moref_id(self, vapp_uuid):
5449 """
5450 Get the moref_id of given VM
5451 """
5452 try:
5453 if vapp_uuid:
5454 vm_details = self.get_vapp_details_rest(vapp_uuid, need_admin_access=True)
5455 if vm_details and "vm_vcenter_info" in vm_details:
5456 vm_moref_id = vm_details["vm_vcenter_info"].get("vm_moref_id", None)
bhangare06312472017-03-30 05:49:07 -07005457 return vm_moref_id
5458
5459 except Exception as exp:
5460 self.logger.error("Error occurred while getting VM moref ID "\
5461 " for VM : {}".format(exp))
5462 return None
5463
5464
5465 def get_vapp_template_details(self, catalogs=None, image_id=None , template_name=None):
5466 """
5467 Method to get vApp template details
5468 Args :
5469 catalogs - list of VDC catalogs
5470 image_id - Catalog ID to find
5471 template_name : template name in catalog
5472 Returns:
5473 parsed_respond : dict of vApp tempalte details
5474 """
5475 parsed_response = {}
5476
5477 vca = self.connect_as_admin()
5478 if not vca:
kasarc5bf2932018-03-09 04:15:22 -08005479 raise vimconn.vimconnConnectionException("Failed to connect vCD")
bhangare06312472017-03-30 05:49:07 -07005480
5481 try:
kasarc5bf2932018-03-09 04:15:22 -08005482 org, vdc = self.get_vdc_details()
bhangare06312472017-03-30 05:49:07 -07005483 catalog = self.get_catalog_obj(image_id, catalogs)
5484 if catalog:
kasarc5bf2932018-03-09 04:15:22 -08005485 items = org.get_catalog_item(catalog.get('name'), catalog.get('name'))
5486 catalog_items = [items.attrib]
5487
bhangare06312472017-03-30 05:49:07 -07005488 if len(catalog_items) == 1:
kasarc5bf2932018-03-09 04:15:22 -08005489 headers = {'Accept':'application/*+xml;version=' + API_VERSION,
sbhangarea8e5b782018-06-21 02:10:03 -07005490 'x-vcloud-authorization': vca._session.headers['x-vcloud-authorization']}
kasarc5bf2932018-03-09 04:15:22 -08005491
5492 response = self.perform_request(req_type='GET',
5493 url=catalog_items[0].get('href'),
5494 headers=headers)
bhangare06312472017-03-30 05:49:07 -07005495 catalogItem = XmlElementTree.fromstring(response.content)
5496 entity = [child for child in catalogItem if child.get("type") == "application/vnd.vmware.vcloud.vAppTemplate+xml"][0]
5497 vapp_tempalte_href = entity.get("href")
5498 #get vapp details and parse moref id
5499
5500 namespaces = {"vssd":"http://schemas.dmtf.org/wbem/wscim/1/cim-schema/2/CIM_VirtualSystemSettingData" ,
5501 'ovf': 'http://schemas.dmtf.org/ovf/envelope/1',
5502 'vmw': 'http://www.vmware.com/schema/ovf',
5503 'vm': 'http://www.vmware.com/vcloud/v1.5',
5504 'rasd':"http://schemas.dmtf.org/wbem/wscim/1/cim-schema/2/CIM_ResourceAllocationSettingData",
5505 'vmext':"http://www.vmware.com/vcloud/extension/v1.5",
5506 'xmlns':"http://www.vmware.com/vcloud/v1.5"
5507 }
5508
kasarc5bf2932018-03-09 04:15:22 -08005509 if vca._session:
5510 response = self.perform_request(req_type='GET',
5511 url=vapp_tempalte_href,
5512 headers=headers)
bhangare06312472017-03-30 05:49:07 -07005513
5514 if response.status_code != requests.codes.ok:
5515 self.logger.debug("REST API call {} failed. Return status code {}".format(
5516 vapp_tempalte_href, response.status_code))
5517
5518 else:
5519 xmlroot_respond = XmlElementTree.fromstring(response.content)
5520 children_section = xmlroot_respond.find('vm:Children/', namespaces)
5521 if children_section is not None:
5522 vCloud_extension_section = children_section.find('xmlns:VCloudExtension', namespaces)
5523 if vCloud_extension_section is not None:
5524 vm_vcenter_info = {}
5525 vim_info = vCloud_extension_section.find('vmext:VmVimInfo', namespaces)
5526 vmext = vim_info.find('vmext:VmVimObjectRef', namespaces)
5527 if vmext is not None:
5528 vm_vcenter_info["vm_moref_id"] = vmext.find('vmext:MoRef', namespaces).text
5529 parsed_response["vm_vcenter_info"]= vm_vcenter_info
5530
5531 except Exception as exp :
5532 self.logger.info("Error occurred calling rest api for getting vApp details {}".format(exp))
5533
5534 return parsed_response
5535
5536
5537 def rollback_newvm(self, vapp_uuid, msg , exp_type="Genric"):
5538 """
5539 Method to delete vApp
5540 Args :
5541 vapp_uuid - vApp UUID
5542 msg - Error message to be logged
5543 exp_type : Exception type
5544 Returns:
5545 None
5546 """
5547 if vapp_uuid:
5548 status = self.delete_vminstance(vapp_uuid)
5549 else:
5550 msg = "No vApp ID"
5551 self.logger.error(msg)
5552 if exp_type == "Genric":
5553 raise vimconn.vimconnException(msg)
5554 elif exp_type == "NotFound":
5555 raise vimconn.vimconnNotFoundException(message=msg)
5556
kateac1e3792017-04-01 02:16:39 -07005557 def add_sriov(self, vapp_uuid, sriov_nets, vmname_andid):
5558 """
5559 Method to attach SRIOV adapters to VM
5560
5561 Args:
5562 vapp_uuid - uuid of vApp/VM
5563 sriov_nets - SRIOV devices infromation as specified in VNFD (flavor)
5564 vmname_andid - vmname
5565
5566 Returns:
5567 The status of add SRIOV adapter task , vm object and
5568 vcenter_conect object
5569 """
5570 vm_obj = None
5571 vcenter_conect, content = self.get_vcenter_content()
5572 vm_moref_id = self.get_vm_moref_id(vapp_uuid)
5573
5574 if vm_moref_id:
5575 try:
5576 no_of_sriov_devices = len(sriov_nets)
5577 if no_of_sriov_devices > 0:
5578 #Get VM and its host
5579 host_obj, vm_obj = self.get_vm_obj(content, vm_moref_id)
5580 self.logger.info("VM {} is currently on host {}".format(vm_obj, host_obj))
5581 if host_obj and vm_obj:
5582 #get SRIOV devies from host on which vapp is currently installed
5583 avilable_sriov_devices = self.get_sriov_devices(host_obj,
5584 no_of_sriov_devices,
5585 )
5586
5587 if len(avilable_sriov_devices) == 0:
5588 #find other hosts with active pci devices
5589 new_host_obj , avilable_sriov_devices = self.get_host_and_sriov_devices(
5590 content,
5591 no_of_sriov_devices,
5592 )
5593
5594 if new_host_obj is not None and len(avilable_sriov_devices)> 0:
5595 #Migrate vm to the host where SRIOV devices are available
5596 self.logger.info("Relocate VM {} on new host {}".format(vm_obj,
5597 new_host_obj))
5598 task = self.relocate_vm(new_host_obj, vm_obj)
5599 if task is not None:
5600 result = self.wait_for_vcenter_task(task, vcenter_conect)
5601 self.logger.info("Migrate VM status: {}".format(result))
5602 host_obj = new_host_obj
5603 else:
5604 self.logger.info("Fail to migrate VM : {}".format(result))
5605 raise vimconn.vimconnNotFoundException(
5606 "Fail to migrate VM : {} to host {}".format(
5607 vmname_andid,
5608 new_host_obj)
5609 )
5610
5611 if host_obj is not None and avilable_sriov_devices is not None and len(avilable_sriov_devices)> 0:
5612 #Add SRIOV devices one by one
5613 for sriov_net in sriov_nets:
5614 network_name = sriov_net.get('net_id')
5615 dvs_portgr_name = self.create_dvPort_group(network_name)
tierno66eba6e2017-11-10 17:09:18 +01005616 if sriov_net.get('type') == "VF" or sriov_net.get('type') == "SR-IOV":
kateac1e3792017-04-01 02:16:39 -07005617 #add vlan ID ,Modify portgroup for vlan ID
5618 self.configure_vlanID(content, vcenter_conect, network_name)
5619
5620 task = self.add_sriov_to_vm(content,
5621 vm_obj,
5622 host_obj,
5623 network_name,
5624 avilable_sriov_devices[0]
5625 )
5626 if task:
5627 status= self.wait_for_vcenter_task(task, vcenter_conect)
5628 if status:
5629 self.logger.info("Added SRIOV {} to VM {}".format(
5630 no_of_sriov_devices,
5631 str(vm_obj)))
5632 else:
5633 self.logger.error("Fail to add SRIOV {} to VM {}".format(
5634 no_of_sriov_devices,
5635 str(vm_obj)))
5636 raise vimconn.vimconnUnexpectedResponse(
5637 "Fail to add SRIOV adapter in VM ".format(str(vm_obj))
5638 )
5639 return True, vm_obj, vcenter_conect
5640 else:
5641 self.logger.error("Currently there is no host with"\
5642 " {} number of avaialble SRIOV "\
5643 "VFs required for VM {}".format(
5644 no_of_sriov_devices,
5645 vmname_andid)
5646 )
5647 raise vimconn.vimconnNotFoundException(
5648 "Currently there is no host with {} "\
5649 "number of avaialble SRIOV devices required for VM {}".format(
5650 no_of_sriov_devices,
5651 vmname_andid))
5652 else:
5653 self.logger.debug("No infromation about SRIOV devices {} ",sriov_nets)
5654
5655 except vmodl.MethodFault as error:
5656 self.logger.error("Error occurred while adding SRIOV {} ",error)
5657 return None, vm_obj, vcenter_conect
5658
5659
5660 def get_sriov_devices(self,host, no_of_vfs):
5661 """
5662 Method to get the details of SRIOV devices on given host
5663 Args:
5664 host - vSphere host object
5665 no_of_vfs - number of VFs needed on host
5666
5667 Returns:
5668 array of SRIOV devices
5669 """
5670 sriovInfo=[]
5671 if host:
5672 for device in host.config.pciPassthruInfo:
5673 if isinstance(device,vim.host.SriovInfo) and device.sriovActive:
5674 if device.numVirtualFunction >= no_of_vfs:
5675 sriovInfo.append(device)
5676 break
5677 return sriovInfo
5678
5679
5680 def get_host_and_sriov_devices(self, content, no_of_vfs):
5681 """
5682 Method to get the details of SRIOV devices infromation on all hosts
5683
5684 Args:
5685 content - vSphere host object
5686 no_of_vfs - number of pci VFs needed on host
5687
5688 Returns:
5689 array of SRIOV devices and host object
5690 """
5691 host_obj = None
5692 sriov_device_objs = None
5693 try:
5694 if content:
5695 container = content.viewManager.CreateContainerView(content.rootFolder,
5696 [vim.HostSystem], True)
5697 for host in container.view:
5698 devices = self.get_sriov_devices(host, no_of_vfs)
5699 if devices:
5700 host_obj = host
5701 sriov_device_objs = devices
5702 break
5703 except Exception as exp:
5704 self.logger.error("Error {} occurred while finding SRIOV devices on host: {}".format(exp, host_obj))
5705
5706 return host_obj,sriov_device_objs
5707
5708
5709 def add_sriov_to_vm(self,content, vm_obj, host_obj, network_name, sriov_device):
5710 """
5711 Method to add SRIOV adapter to vm
5712
5713 Args:
5714 host_obj - vSphere host object
5715 vm_obj - vSphere vm object
5716 content - vCenter content object
5717 network_name - name of distributed virtaul portgroup
5718 sriov_device - SRIOV device info
5719
5720 Returns:
5721 task object
5722 """
5723 devices = []
5724 vnic_label = "sriov nic"
5725 try:
5726 dvs_portgr = self.get_dvport_group(network_name)
5727 network_name = dvs_portgr.name
5728 nic = vim.vm.device.VirtualDeviceSpec()
5729 # VM device
5730 nic.operation = vim.vm.device.VirtualDeviceSpec.Operation.add
5731 nic.device = vim.vm.device.VirtualSriovEthernetCard()
5732 nic.device.addressType = 'assigned'
5733 #nic.device.key = 13016
5734 nic.device.deviceInfo = vim.Description()
5735 nic.device.deviceInfo.label = vnic_label
5736 nic.device.deviceInfo.summary = network_name
5737 nic.device.backing = vim.vm.device.VirtualEthernetCard.NetworkBackingInfo()
5738
5739 nic.device.backing.network = self.get_obj(content, [vim.Network], network_name)
5740 nic.device.backing.deviceName = network_name
5741 nic.device.backing.useAutoDetect = False
5742 nic.device.connectable = vim.vm.device.VirtualDevice.ConnectInfo()
5743 nic.device.connectable.startConnected = True
5744 nic.device.connectable.allowGuestControl = True
5745
5746 nic.device.sriovBacking = vim.vm.device.VirtualSriovEthernetCard.SriovBackingInfo()
5747 nic.device.sriovBacking.physicalFunctionBacking = vim.vm.device.VirtualPCIPassthrough.DeviceBackingInfo()
5748 nic.device.sriovBacking.physicalFunctionBacking.id = sriov_device.id
5749
5750 devices.append(nic)
5751 vmconf = vim.vm.ConfigSpec(deviceChange=devices)
5752 task = vm_obj.ReconfigVM_Task(vmconf)
5753 return task
5754 except Exception as exp:
5755 self.logger.error("Error {} occurred while adding SRIOV adapter in VM: {}".format(exp, vm_obj))
5756 return None
5757
5758
5759 def create_dvPort_group(self, network_name):
5760 """
5761 Method to create disributed virtual portgroup
5762
5763 Args:
5764 network_name - name of network/portgroup
5765
5766 Returns:
5767 portgroup key
5768 """
5769 try:
5770 new_network_name = [network_name, '-', str(uuid.uuid4())]
5771 network_name=''.join(new_network_name)
5772 vcenter_conect, content = self.get_vcenter_content()
5773
5774 dv_switch = self.get_obj(content, [vim.DistributedVirtualSwitch], self.dvs_name)
5775 if dv_switch:
5776 dv_pg_spec = vim.dvs.DistributedVirtualPortgroup.ConfigSpec()
5777 dv_pg_spec.name = network_name
5778
5779 dv_pg_spec.type = vim.dvs.DistributedVirtualPortgroup.PortgroupType.earlyBinding
5780 dv_pg_spec.defaultPortConfig = vim.dvs.VmwareDistributedVirtualSwitch.VmwarePortConfigPolicy()
5781 dv_pg_spec.defaultPortConfig.securityPolicy = vim.dvs.VmwareDistributedVirtualSwitch.SecurityPolicy()
5782 dv_pg_spec.defaultPortConfig.securityPolicy.allowPromiscuous = vim.BoolPolicy(value=False)
5783 dv_pg_spec.defaultPortConfig.securityPolicy.forgedTransmits = vim.BoolPolicy(value=False)
5784 dv_pg_spec.defaultPortConfig.securityPolicy.macChanges = vim.BoolPolicy(value=False)
5785
5786 task = dv_switch.AddDVPortgroup_Task([dv_pg_spec])
5787 self.wait_for_vcenter_task(task, vcenter_conect)
5788
5789 dvPort_group = self.get_obj(content, [vim.dvs.DistributedVirtualPortgroup], network_name)
5790 if dvPort_group:
5791 self.logger.info("Created disributed virtaul port group: {}".format(dvPort_group))
5792 return dvPort_group.key
5793 else:
5794 self.logger.debug("No disributed virtual switch found with name {}".format(network_name))
5795
5796 except Exception as exp:
5797 self.logger.error("Error occurred while creating disributed virtaul port group {}"\
5798 " : {}".format(network_name, exp))
5799 return None
5800
5801 def reconfig_portgroup(self, content, dvPort_group_name , config_info={}):
5802 """
5803 Method to reconfigure disributed virtual portgroup
5804
5805 Args:
5806 dvPort_group_name - name of disributed virtual portgroup
5807 content - vCenter content object
5808 config_info - disributed virtual portgroup configuration
5809
5810 Returns:
5811 task object
5812 """
5813 try:
5814 dvPort_group = self.get_dvport_group(dvPort_group_name)
5815 if dvPort_group:
5816 dv_pg_spec = vim.dvs.DistributedVirtualPortgroup.ConfigSpec()
5817 dv_pg_spec.configVersion = dvPort_group.config.configVersion
5818 dv_pg_spec.defaultPortConfig = vim.dvs.VmwareDistributedVirtualSwitch.VmwarePortConfigPolicy()
5819 if "vlanID" in config_info:
5820 dv_pg_spec.defaultPortConfig.vlan = vim.dvs.VmwareDistributedVirtualSwitch.VlanIdSpec()
5821 dv_pg_spec.defaultPortConfig.vlan.vlanId = config_info.get('vlanID')
5822
5823 task = dvPort_group.ReconfigureDVPortgroup_Task(spec=dv_pg_spec)
5824 return task
5825 else:
5826 return None
5827 except Exception as exp:
5828 self.logger.error("Error occurred while reconfiguraing disributed virtaul port group {}"\
5829 " : {}".format(dvPort_group_name, exp))
5830 return None
5831
5832
5833 def destroy_dvport_group(self , dvPort_group_name):
5834 """
5835 Method to destroy disributed virtual portgroup
5836
5837 Args:
5838 network_name - name of network/portgroup
5839
5840 Returns:
5841 True if portgroup successfully got deleted else false
5842 """
5843 vcenter_conect, content = self.get_vcenter_content()
5844 try:
5845 status = None
5846 dvPort_group = self.get_dvport_group(dvPort_group_name)
5847 if dvPort_group:
5848 task = dvPort_group.Destroy_Task()
5849 status = self.wait_for_vcenter_task(task, vcenter_conect)
5850 return status
5851 except vmodl.MethodFault as exp:
5852 self.logger.error("Caught vmodl fault {} while deleting disributed virtaul port group {}".format(
5853 exp, dvPort_group_name))
5854 return None
5855
5856
5857 def get_dvport_group(self, dvPort_group_name):
5858 """
5859 Method to get disributed virtual portgroup
5860
5861 Args:
5862 network_name - name of network/portgroup
5863
5864 Returns:
5865 portgroup object
5866 """
5867 vcenter_conect, content = self.get_vcenter_content()
5868 dvPort_group = None
5869 try:
5870 container = content.viewManager.CreateContainerView(content.rootFolder, [vim.dvs.DistributedVirtualPortgroup], True)
5871 for item in container.view:
5872 if item.key == dvPort_group_name:
5873 dvPort_group = item
5874 break
5875 return dvPort_group
5876 except vmodl.MethodFault as exp:
5877 self.logger.error("Caught vmodl fault {} for disributed virtaul port group {}".format(
5878 exp, dvPort_group_name))
5879 return None
5880
5881 def get_vlanID_from_dvs_portgr(self, dvPort_group_name):
5882 """
5883 Method to get disributed virtual portgroup vlanID
5884
5885 Args:
5886 network_name - name of network/portgroup
5887
5888 Returns:
5889 vlan ID
5890 """
5891 vlanId = None
5892 try:
5893 dvPort_group = self.get_dvport_group(dvPort_group_name)
5894 if dvPort_group:
5895 vlanId = dvPort_group.config.defaultPortConfig.vlan.vlanId
5896 except vmodl.MethodFault as exp:
5897 self.logger.error("Caught vmodl fault {} for disributed virtaul port group {}".format(
5898 exp, dvPort_group_name))
5899 return vlanId
5900
5901
5902 def configure_vlanID(self, content, vcenter_conect, dvPort_group_name):
5903 """
5904 Method to configure vlanID in disributed virtual portgroup vlanID
5905
5906 Args:
5907 network_name - name of network/portgroup
5908
5909 Returns:
5910 None
5911 """
5912 vlanID = self.get_vlanID_from_dvs_portgr(dvPort_group_name)
5913 if vlanID == 0:
5914 #configure vlanID
5915 vlanID = self.genrate_vlanID(dvPort_group_name)
5916 config = {"vlanID":vlanID}
5917 task = self.reconfig_portgroup(content, dvPort_group_name,
5918 config_info=config)
5919 if task:
5920 status= self.wait_for_vcenter_task(task, vcenter_conect)
5921 if status:
5922 self.logger.info("Reconfigured Port group {} for vlan ID {}".format(
5923 dvPort_group_name,vlanID))
5924 else:
5925 self.logger.error("Fail reconfigure portgroup {} for vlanID{}".format(
5926 dvPort_group_name, vlanID))
5927
5928
5929 def genrate_vlanID(self, network_name):
5930 """
5931 Method to get unused vlanID
5932 Args:
5933 network_name - name of network/portgroup
5934 Returns:
5935 vlanID
5936 """
5937 vlan_id = None
5938 used_ids = []
5939 if self.config.get('vlanID_range') == None:
5940 raise vimconn.vimconnConflictException("You must provide a 'vlanID_range' "\
5941 "at config value before creating sriov network with vlan tag")
5942 if "used_vlanIDs" not in self.persistent_info:
5943 self.persistent_info["used_vlanIDs"] = {}
5944 else:
5945 used_ids = self.persistent_info["used_vlanIDs"].values()
kasarc5bf2932018-03-09 04:15:22 -08005946 #For python3
5947 #used_ids = list(self.persistent_info["used_vlanIDs"].values())
kateac1e3792017-04-01 02:16:39 -07005948
5949 for vlanID_range in self.config.get('vlanID_range'):
5950 start_vlanid , end_vlanid = vlanID_range.split("-")
5951 if start_vlanid > end_vlanid:
5952 raise vimconn.vimconnConflictException("Invalid vlan ID range {}".format(
5953 vlanID_range))
5954
5955 for id in xrange(int(start_vlanid), int(end_vlanid) + 1):
kasarc5bf2932018-03-09 04:15:22 -08005956 #For python3
5957 #for id in range(int(start_vlanid), int(end_vlanid) + 1):
kateac1e3792017-04-01 02:16:39 -07005958 if id not in used_ids:
5959 vlan_id = id
5960 self.persistent_info["used_vlanIDs"][network_name] = vlan_id
5961 return vlan_id
5962 if vlan_id is None:
5963 raise vimconn.vimconnConflictException("All Vlan IDs are in use")
5964
5965
5966 def get_obj(self, content, vimtype, name):
5967 """
5968 Get the vsphere object associated with a given text name
5969 """
5970 obj = None
5971 container = content.viewManager.CreateContainerView(content.rootFolder, vimtype, True)
5972 for item in container.view:
5973 if item.name == name:
5974 obj = item
5975 break
5976 return obj
5977
kasar0c007d62017-05-19 03:13:57 -07005978
5979 def insert_media_to_vm(self, vapp, image_id):
5980 """
5981 Method to insert media CD-ROM (ISO image) from catalog to vm.
5982 vapp - vapp object to get vm id
5983 Image_id - image id for cdrom to be inerted to vm
5984 """
5985 # create connection object
5986 vca = self.connect()
5987 try:
5988 # fetching catalog details
kasarc5bf2932018-03-09 04:15:22 -08005989 rest_url = "{}/api/catalog/{}".format(self.url, image_id)
5990 if vca._session:
5991 headers = {'Accept':'application/*+xml;version=' + API_VERSION,
sbhangarea8e5b782018-06-21 02:10:03 -07005992 'x-vcloud-authorization': vca._session.headers['x-vcloud-authorization']}
kasarc5bf2932018-03-09 04:15:22 -08005993 response = self.perform_request(req_type='GET',
5994 url=rest_url,
5995 headers=headers)
kasar0c007d62017-05-19 03:13:57 -07005996
5997 if response.status_code != 200:
5998 self.logger.error("REST call {} failed reason : {}"\
5999 "status code : {}".format(url_rest_call,
6000 response.content,
6001 response.status_code))
6002 raise vimconn.vimconnException("insert_media_to_vm(): Failed to get "\
6003 "catalog details")
6004 # searching iso name and id
6005 iso_name,media_id = self.get_media_details(vca, response.content)
6006
6007 if iso_name and media_id:
6008 data ="""<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
6009 <ns6:MediaInsertOrEjectParams
6010 xmlns="http://www.vmware.com/vcloud/versions" xmlns:ns2="http://schemas.dmtf.org/ovf/envelope/1" xmlns:ns3="http://schemas.dmtf.org/wbem/wscim/1/cim-schema/2/CIM_VirtualSystemSettingData" xmlns:ns4="http://schemas.dmtf.org/wbem/wscim/1/common" xmlns:ns5="http://schemas.dmtf.org/wbem/wscim/1/cim-schema/2/CIM_ResourceAllocationSettingData" xmlns:ns6="http://www.vmware.com/vcloud/v1.5" xmlns:ns7="http://www.vmware.com/schema/ovf" xmlns:ns8="http://schemas.dmtf.org/ovf/environment/1" xmlns:ns9="http://www.vmware.com/vcloud/extension/v1.5">
6011 <ns6:Media
6012 type="application/vnd.vmware.vcloud.media+xml"
6013 name="{}.iso"
6014 id="urn:vcloud:media:{}"
6015 href="https://{}/api/media/{}"/>
6016 </ns6:MediaInsertOrEjectParams>""".format(iso_name, media_id,
kasarc5bf2932018-03-09 04:15:22 -08006017 self.url,media_id)
kasar0c007d62017-05-19 03:13:57 -07006018
kasarc5bf2932018-03-09 04:15:22 -08006019 for vms in vapp.get_all_vms():
6020 vm_id = vms.get('id').split(':')[-1]
kasar0c007d62017-05-19 03:13:57 -07006021
kasar0c007d62017-05-19 03:13:57 -07006022 headers['Content-Type'] = 'application/vnd.vmware.vcloud.mediaInsertOrEjectParams+xml'
kasarc5bf2932018-03-09 04:15:22 -08006023 rest_url = "{}/api/vApp/vm-{}/media/action/insertMedia".format(self.url,vm_id)
kasar0c007d62017-05-19 03:13:57 -07006024
kasarc5bf2932018-03-09 04:15:22 -08006025 response = self.perform_request(req_type='POST',
6026 url=rest_url,
6027 data=data,
6028 headers=headers)
kasar0c007d62017-05-19 03:13:57 -07006029
6030 if response.status_code != 202:
6031 self.logger.error("Failed to insert CD-ROM to vm")
6032 raise vimconn.vimconnException("insert_media_to_vm() : Failed to insert"\
6033 "ISO image to vm")
6034 else:
kasarc5bf2932018-03-09 04:15:22 -08006035 task = self.get_task_from_response(response.content)
6036 result = self.client.get_task_monitor().wait_for_success(task=task)
6037 if result.get('status') == 'success':
kasar0c007d62017-05-19 03:13:57 -07006038 self.logger.info("insert_media_to_vm(): Sucessfully inserted media ISO"\
6039 " image to vm {}".format(vm_id))
kasarc5bf2932018-03-09 04:15:22 -08006040
kasar0c007d62017-05-19 03:13:57 -07006041 except Exception as exp:
6042 self.logger.error("insert_media_to_vm() : exception occurred "\
6043 "while inserting media CD-ROM")
6044 raise vimconn.vimconnException(message=exp)
6045
6046
6047 def get_media_details(self, vca, content):
6048 """
6049 Method to get catalog item details
6050 vca - connection object
6051 content - Catalog details
6052 Return - Media name, media id
6053 """
6054 cataloghref_list = []
6055 try:
6056 if content:
6057 vm_list_xmlroot = XmlElementTree.fromstring(content)
6058 for child in vm_list_xmlroot.iter():
6059 if 'CatalogItem' in child.tag:
6060 cataloghref_list.append(child.attrib.get('href'))
6061 if cataloghref_list is not None:
6062 for href in cataloghref_list:
6063 if href:
kasarc5bf2932018-03-09 04:15:22 -08006064 headers = {'Accept':'application/*+xml;version=' + API_VERSION,
sbhangarea8e5b782018-06-21 02:10:03 -07006065 'x-vcloud-authorization': vca._session.headers['x-vcloud-authorization']}
kasarc5bf2932018-03-09 04:15:22 -08006066 response = self.perform_request(req_type='GET',
6067 url=href,
6068 headers=headers)
kasar0c007d62017-05-19 03:13:57 -07006069 if response.status_code != 200:
6070 self.logger.error("REST call {} failed reason : {}"\
6071 "status code : {}".format(href,
6072 response.content,
6073 response.status_code))
6074 raise vimconn.vimconnException("get_media_details : Failed to get "\
6075 "catalogitem details")
6076 list_xmlroot = XmlElementTree.fromstring(response.content)
6077 for child in list_xmlroot.iter():
6078 if 'Entity' in child.tag:
6079 if 'media' in child.attrib.get('href'):
6080 name = child.attrib.get('name')
6081 media_id = child.attrib.get('href').split('/').pop()
6082 return name,media_id
6083 else:
6084 self.logger.debug("Media name and id not found")
6085 return False,False
6086 except Exception as exp:
6087 self.logger.error("get_media_details : exception occurred "\
6088 "getting media details")
6089 raise vimconn.vimconnException(message=exp)
6090
bhangare1a0b97c2017-06-21 02:20:15 -07006091
kated47ad5f2017-08-03 02:16:13 -07006092 def retry_rest(self, method, url, add_headers=None, data=None):
bhangare1a0b97c2017-06-21 02:20:15 -07006093 """ Method to get Token & retry respective REST request
6094 Args:
6095 api - REST API - Can be one of 'GET' or 'PUT' or 'POST'
6096 url - request url to be used
6097 add_headers - Additional headers (optional)
6098 data - Request payload data to be passed in request
6099 Returns:
6100 response - Response of request
6101 """
6102 response = None
6103
6104 #Get token
6105 self.get_token()
6106
kasarc5bf2932018-03-09 04:15:22 -08006107 if self.client._session:
6108 headers = {'Accept':'application/*+xml;version=' + API_VERSION,
sbhangarea8e5b782018-06-21 02:10:03 -07006109 'x-vcloud-authorization': self.client._session.headers['x-vcloud-authorization']}
bhangare1a0b97c2017-06-21 02:20:15 -07006110
6111 if add_headers:
6112 headers.update(add_headers)
6113
kated47ad5f2017-08-03 02:16:13 -07006114 if method == 'GET':
kasarc5bf2932018-03-09 04:15:22 -08006115 response = self.perform_request(req_type='GET',
6116 url=url,
6117 headers=headers)
kated47ad5f2017-08-03 02:16:13 -07006118 elif method == 'PUT':
kasarc5bf2932018-03-09 04:15:22 -08006119 response = self.perform_request(req_type='PUT',
6120 url=url,
6121 headers=headers,
sbhangarea8e5b782018-06-21 02:10:03 -07006122 data=data)
kated47ad5f2017-08-03 02:16:13 -07006123 elif method == 'POST':
kasarc5bf2932018-03-09 04:15:22 -08006124 response = self.perform_request(req_type='POST',
6125 url=url,
6126 headers=headers,
sbhangarea8e5b782018-06-21 02:10:03 -07006127 data=data)
kated47ad5f2017-08-03 02:16:13 -07006128 elif method == 'DELETE':
kasarc5bf2932018-03-09 04:15:22 -08006129 response = self.perform_request(req_type='DELETE',
6130 url=url,
6131 headers=headers)
kated47ad5f2017-08-03 02:16:13 -07006132 return response
6133
bhangare1a0b97c2017-06-21 02:20:15 -07006134
6135 def get_token(self):
6136 """ Generate a new token if expired
6137
6138 Returns:
kasarc5bf2932018-03-09 04:15:22 -08006139 The return client object that letter can be used to connect to vCloud director as admin for VDC
bhangare1a0b97c2017-06-21 02:20:15 -07006140 """
bhangare1a0b97c2017-06-21 02:20:15 -07006141 try:
6142 self.logger.debug("Generate token for vca {} as {} to datacenter {}.".format(self.org_name,
6143 self.user,
6144 self.org_name))
kasarc5bf2932018-03-09 04:15:22 -08006145 host = self.url
6146 client = Client(host, verify_ssl_certs=False)
6147 client.set_credentials(BasicLoginCredentials(self.user, self.org_name, self.passwd))
6148 # connection object
sbhangarea8e5b782018-06-21 02:10:03 -07006149 self.client = client
bhangare1a0b97c2017-06-21 02:20:15 -07006150
6151 except:
6152 raise vimconn.vimconnConnectionException("Can't connect to a vCloud director org: "
6153 "{} as user: {}".format(self.org_name, self.user))
6154
kasarc5bf2932018-03-09 04:15:22 -08006155 if not client:
6156 raise vimconn.vimconnConnectionException("Failed while reconnecting vCD")
bhangare1a0b97c2017-06-21 02:20:15 -07006157
bhangare1a0b97c2017-06-21 02:20:15 -07006158
6159 def get_vdc_details(self):
6160 """ Get VDC details using pyVcloud Lib
6161
kasarc5bf2932018-03-09 04:15:22 -08006162 Returns org and vdc object
bhangare1a0b97c2017-06-21 02:20:15 -07006163 """
kasarc5bf2932018-03-09 04:15:22 -08006164 org = Org(self.client, resource=self.client.get_org())
6165 vdc = org.get_vdc(self.tenant_name)
bhangare1a0b97c2017-06-21 02:20:15 -07006166
6167 #Retry once, if failed by refreshing token
6168 if vdc is None:
6169 self.get_token()
kasarc5bf2932018-03-09 04:15:22 -08006170 vdc = org.get_vdc(self.tenant_name)
bhangare1a0b97c2017-06-21 02:20:15 -07006171
kasarc5bf2932018-03-09 04:15:22 -08006172 return org, vdc
6173
6174
6175 def perform_request(self, req_type, url, headers=None, data=None):
6176 """Perform the POST/PUT/GET/DELETE request."""
6177
6178 #Log REST request details
6179 self.log_request(req_type, url=url, headers=headers, data=data)
6180 # perform request and return its result
6181 if req_type == 'GET':
6182 response = requests.get(url=url,
6183 headers=headers,
6184 verify=False)
6185 elif req_type == 'PUT':
6186 response = requests.put(url=url,
6187 headers=headers,
6188 data=data,
6189 verify=False)
6190 elif req_type == 'POST':
6191 response = requests.post(url=url,
6192 headers=headers,
6193 data=data,
6194 verify=False)
6195 elif req_type == 'DELETE':
6196 response = requests.delete(url=url,
6197 headers=headers,
6198 verify=False)
6199 #Log the REST response
6200 self.log_response(response)
6201
6202 return response
6203
6204
6205 def log_request(self, req_type, url=None, headers=None, data=None):
6206 """Logs REST request details"""
6207
6208 if req_type is not None:
6209 self.logger.debug("Request type: {}".format(req_type))
6210
6211 if url is not None:
6212 self.logger.debug("Request url: {}".format(url))
6213
6214 if headers is not None:
6215 for header in headers:
6216 self.logger.debug("Request header: {}: {}".format(header, headers[header]))
6217
6218 if data is not None:
6219 self.logger.debug("Request data: {}".format(data))
6220
6221
6222 def log_response(self, response):
6223 """Logs REST response details"""
6224
6225 self.logger.debug("Response status code: {} ".format(response.status_code))
6226
6227
6228 def get_task_from_response(self, content):
6229 """
6230 content - API response content(response.content)
sbhangarea8e5b782018-06-21 02:10:03 -07006231 return task object
kasarc5bf2932018-03-09 04:15:22 -08006232 """
6233 xmlroot = XmlElementTree.fromstring(content)
6234 if xmlroot.tag.split('}')[1] == "Task":
6235 return xmlroot
sbhangarea8e5b782018-06-21 02:10:03 -07006236 else:
kasarc5bf2932018-03-09 04:15:22 -08006237 for ele in xmlroot:
6238 if ele.tag.split("}")[1] == "Tasks":
6239 task = ele[0]
sbhangarea8e5b782018-06-21 02:10:03 -07006240 break
kasarc5bf2932018-03-09 04:15:22 -08006241 return task
6242
6243
6244 def power_on_vapp(self,vapp_id, vapp_name):
6245 """
6246 vapp_id - vApp uuid
6247 vapp_name - vAapp name
sbhangarea8e5b782018-06-21 02:10:03 -07006248 return - Task object
kasarc5bf2932018-03-09 04:15:22 -08006249 """
6250 headers = {'Accept':'application/*+xml;version=' + API_VERSION,
6251 'x-vcloud-authorization': self.client._session.headers['x-vcloud-authorization']}
sbhangarea8e5b782018-06-21 02:10:03 -07006252
kasarc5bf2932018-03-09 04:15:22 -08006253 poweron_href = "{}/api/vApp/vapp-{}/power/action/powerOn".format(self.url,
6254 vapp_id)
6255 response = self.perform_request(req_type='POST',
6256 url=poweron_href,
6257 headers=headers)
6258
6259 if response.status_code != 202:
6260 self.logger.error("REST call {} failed reason : {}"\
6261 "status code : {} ".format(poweron_href,
6262 response.content,
6263 response.status_code))
6264 raise vimconn.vimconnException("power_on_vapp() : Failed to power on "\
6265 "vApp {}".format(vapp_name))
6266 else:
6267 poweron_task = self.get_task_from_response(response.content)
6268 return poweron_task
bhangare1a0b97c2017-06-21 02:20:15 -07006269
kated47ad5f2017-08-03 02:16:13 -07006270