55f6d16483be166412400019f2420c52bbfa6ec8
[vfc/gvnfm/vnflcm.git] / lcm / lcm / pub / vimapi / adaptor.py
1 # Copyright 2017 ZTE Corporation.
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 #         http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15 import logging
16 import time
17 import json
18 import os
19 import base64
20
21 from lcm.pub.utils.values import ignore_case_get, set_opt_val
22 from . import api
23 from .exceptions import VimException
24 from lcm.pub.exceptions import NFLCMException
25 from lcm.nf.const import ACTION_TYPE, HEAL_ACTION_TYPE
26
27 logger = logging.getLogger(__name__)
28
29 ERR_CODE = "500"
30 RES_EXIST, RES_NEW = 0, 1
31 IP_V4, IP_V6 = 4, 6
32 BOOT_FROM_VOLUME, BOOT_FROM_IMAGE = 1, 2
33
34 RES_VOLUME = "volume"
35 RES_NETWORK = "network"
36 RES_SUBNET = "subnet"
37 RES_PORT = "port"
38 RES_FLAVOR = "flavor"
39 RES_VM = "vm"
40 NOT_PREDEFINED = 1
41
42
43 def get_tenant_id(vim_cache, vim_id, tenant_name):
44     if vim_id not in vim_cache:
45         tenants = api.list_tenant(vim_id)
46         vim_cache[vim_id] = {}
47         for tenant in tenants["tenants"]:
48             id, name = tenant["id"], tenant["name"]
49             vim_cache[vim_id][name] = id
50     if tenant_name not in vim_cache[vim_id]:
51         raise VimException("Tenant(%s) not found in vim(%s)" % (tenant_name, vim_id), ERR_CODE)
52     return vim_cache[vim_id][tenant_name]
53
54
55 def set_res_cache(res_cache, res_type, key, val):
56     if res_type not in res_cache:
57         res_cache[res_type] = {}
58     if key in res_cache[res_type]:
59         raise VimException("Duplicate key(%s) of %s" % (key, res_type), ERR_CODE)
60     res_cache[res_type][key] = val
61
62
63 def get_res_id(res_cache, res_type, key):
64     if res_type not in res_cache:
65         raise VimException("%s not found in cache" % res_type, ERR_CODE)
66     if key not in res_cache[res_type]:
67         raise VimException("%s(%s) not found in cache" % (res_type, key), ERR_CODE)
68     return res_cache[res_type][key]
69
70
71 def action_vm(action_type, server, vimId, tenantId):
72     param = {}
73     if action_type == ACTION_TYPE.START:
74         param = {
75             "os-start": None,
76         }
77     elif action_type == ACTION_TYPE.STOP:
78         param = {
79             "os-stop": None,
80         }
81     elif action_type == ACTION_TYPE.REBOOT:
82         param = {
83             "reboot": {}
84         }
85         if server["status"] == "ACTIVE":
86             param["reboot"]["type"] = "SOFT"
87         else:
88             param["reboot"]["type"] = "HARD"
89     res_id = server["id"]
90     logger.debug("%s,%s,%s,%s", vimId, tenantId, res_id, param)
91     api.action_vm(vimId, tenantId, res_id, param)
92
93
94 # TODO Have to check if the resources should be started and stopped in some order.
95 def operate_vim_res(data, changeStateTo, stopType, gracefulStopTimeout, do_notify_op):
96     for res in ignore_case_get(data, "vm"):
97         try:
98             if changeStateTo == "STARTED":
99                 action_vm(ACTION_TYPE.START, res, res["vim_id"], res["tenant_id"])
100                 do_notify_op("ACTIVE", res["id"])
101             elif changeStateTo == "STOPPED":
102                 if stopType == "GRACEFUL":
103                     if gracefulStopTimeout > 60:
104                         gracefulStopTimeout = 60
105                     time.sleep(gracefulStopTimeout)
106                 action_vm(ACTION_TYPE.STOP, res, res["vim_id"], res["tenant_id"])
107                 do_notify_op("INACTIVE", res["id"])
108         except VimException as e:
109             logger.error("Failed to Operate %s(%s)", RES_VM, res["res_id"])
110             logger.error("%s:%s", e.http_code, e.args[0])
111             raise NFLCMException("Failed to Operate %s(%s)", RES_VM, res["res_id"])
112
113
114 def heal_vim_res(vdus, vnfd_info, do_notify, data, vim_cache, res_cache):
115     try:
116         vimid = data["vimid"]
117         tenant = data["tenant"]
118         actionType = data["action"]
119         resid = ''
120         if actionType == HEAL_ACTION_TYPE.START:
121             resid = vdus[0]["vdu_id"]
122             create_vm(vim_cache, res_cache, vnfd_info, vdus[0], do_notify, RES_VM)
123         elif actionType == HEAL_ACTION_TYPE.RESTART:
124             resid = vdus[0].resourceid
125             logger.debug("Start restart vm(%s)", resid)
126             vm_info = api.get_vm(vimid, tenant, vdus[0].resourceid)
127             logger.debug("vminfo=%s", vm_info)
128             action_vm(ACTION_TYPE.REBOOT, vm_info, vimid, tenant)
129     except VimException as e:
130         logger.error("Failed to Heal %s(%s)", RES_VM, resid)
131         logger.error("%s:%s", e.http_code, e.args[0])
132         raise NFLCMException("Failed to Heal %s(%s)" % (RES_VM, resid))
133
134
135 def create_vim_res(data, do_notify, vim_cache={}, res_cache={}):
136     for vol in ignore_case_get(data, "volume_storages"):
137         create_volume(vim_cache, res_cache, vol, do_notify, RES_VOLUME)
138     for network in ignore_case_get(data, "vls"):
139         create_network(vim_cache, res_cache, network, do_notify, RES_NETWORK)
140     for subnet in ignore_case_get(data, "vls"):
141         create_subnet(vim_cache, res_cache, subnet, do_notify, RES_SUBNET)
142     for port in ignore_case_get(data, "cps"):
143         create_port(vim_cache, res_cache, data, port, do_notify, RES_PORT)
144     for vdu in ignore_case_get(data, "vdus"):
145         if vdu["type"] == "tosca.nodes.nfv.Vdu.Compute":
146             create_flavor(vim_cache, res_cache, data, vdu, do_notify, RES_FLAVOR)
147     for vdu in ignore_case_get(data, "vdus"):
148         if vdu["type"] == "tosca.nodes.nfv.Vdu.Compute":
149             create_vm(vim_cache, res_cache, data, vdu, do_notify, RES_VM)
150
151
152 def delete_vim_res(data, do_notify):
153     res_types = [RES_VM, RES_FLAVOR, RES_PORT, RES_SUBNET, RES_NETWORK, RES_VOLUME]
154     res_del_funs = [api.delete_vm, api.delete_flavor, api.delete_port,
155                     api.delete_subnet, api.delete_network, api.delete_volume]
156     for res_type, res_del_fun in zip(res_types, res_del_funs):
157         for res in ignore_case_get(data, res_type):
158             try:
159                 if NOT_PREDEFINED == res["is_predefined"]:
160                     res_del_fun(res["vim_id"], res["tenant_id"], res["res_id"])
161             except VimException as e:
162                 logger.error("Failed to delete %s(%s)", res_type, res["res_id"])
163                 logger.error("%s:%s", e.http_code, e.args[0])
164             do_notify(res_type, res["res_id"])
165
166
167 def create_volume(vim_cache, res_cache, vol, do_notify, res_type):
168     location_info = vol["properties"]["location_info"]
169     param = {
170         "name": vol["properties"]["volume_name"] if vol["properties"].get("volume_name", None) else vol["volume_storage_id"],
171         "volumeSize": int(ignore_case_get(vol["properties"], "size_of_storage", "0").replace('GB', '').replace('"', '').strip())
172     }
173     set_opt_val(param, "imageName", ignore_case_get(vol, "image_file"))
174     set_opt_val(param, "volumeType", ignore_case_get(vol["properties"], "type_of_storage"))
175     set_opt_val(param, "availabilityZone", ignore_case_get(location_info, "availability_zone"))
176     vim_id, tenant_name = location_info["vimid"], location_info["tenant"]
177     tenant_id = get_tenant_id(vim_cache, vim_id, tenant_name)
178     ret = api.create_volume(vim_id, tenant_id, param)
179     ret["nodeId"] = vol["volume_storage_id"]
180     do_notify(res_type, ret)
181     vol_id, vol_name = ret["id"], ret["name"]
182     set_res_cache(res_cache, res_type, vol["volume_storage_id"], vol_id)
183     retry_count, max_retry_count = 0, 300
184     while retry_count < max_retry_count:
185         vol_info = api.get_volume(vim_id, tenant_id, vol_id)
186         if vol_info["status"].upper() == "AVAILABLE":
187             logger.debug("Volume(%s) is available", vol_id)
188             return
189         time.sleep(2)
190         retry_count = retry_count + 1
191     raise VimException("Failed to create Volume(%s): Timeout." % vol_name, ERR_CODE)
192
193
194 def create_network(vim_cache, res_cache, network, do_notify, res_type):
195     location_info = network["properties"]["location_info"]
196     vl_profile = network["properties"]["vl_profile"]
197     param = {
198         "name": vl_profile["networkName"],
199         "shared": False,
200         "networkType": ignore_case_get(vl_profile, "networkType"),
201         "physicalNetwork": ignore_case_get(vl_profile, "physicalNetwork")
202     }
203     set_opt_val(param, "vlanTransparent", ignore_case_get(vl_profile, "vlanTransparent"))
204     set_opt_val(param, "segmentationId", int(ignore_case_get(vl_profile, "segmentationId", "0")))
205     set_opt_val(param, "routerExternal", ignore_case_get(network, "route_external"))
206     vim_id, tenant_name = location_info["vimid"], location_info["tenant"]
207     tenant_id = get_tenant_id(vim_cache, vim_id, tenant_name)
208     ret = api.create_network(vim_id, tenant_id, param)
209     ret["nodeId"] = network["vl_id"]
210     do_notify(res_type, ret)
211     set_res_cache(res_cache, res_type, network["vl_id"], ret["id"])
212
213
214 def create_subnet(vim_cache, res_cache, subnet, do_notify, res_type):
215     location_info = subnet["properties"]["location_info"]
216     network_id = get_res_id(res_cache, RES_NETWORK, subnet["vl_id"])
217     vl_profile = subnet["properties"]["vl_profile"]
218     layer_protocol = ignore_case_get(subnet["properties"]["connectivity_type"], "layer_protocol")
219     param = {
220         "networkId": network_id,
221         "name": vl_profile["networkName"] + "_subnet",
222         "cidr": ignore_case_get(vl_profile, "cidr"),
223         "ipVersion": IP_V4 if(layer_protocol == 'ipv4') else (IP_V6 if(layer_protocol == 'ipv6') else None)
224     }
225     set_opt_val(param, "enableDhcp", ignore_case_get(vl_profile, "dhcpEnabled"))
226     set_opt_val(param, "gatewayIp", ignore_case_get(vl_profile, "gatewayIp"))
227     set_opt_val(param, "dnsNameservers", ignore_case_get(subnet["properties"], "dns_nameservers"))
228     allocation_pool = {}
229     set_opt_val(allocation_pool, "start", ignore_case_get(vl_profile, "startIp"))
230     set_opt_val(allocation_pool, "end", ignore_case_get(vl_profile, "endIp"))
231     if allocation_pool:
232         param["allocationPools"] = [allocation_pool]
233     set_opt_val(param, "hostRoutes", ignore_case_get(subnet["properties"], "host_routes"))
234     vim_id, tenant_name = location_info["vimid"], location_info["tenant"]
235     tenant_id = get_tenant_id(vim_cache, vim_id, tenant_name)
236     ret = api.create_subnet(vim_id, tenant_id, param)
237     do_notify(res_type, ret)
238     set_res_cache(res_cache, res_type, subnet["vl_id"], ret["id"])
239
240
241 def create_port(vim_cache, res_cache, data, port, do_notify, res_type):
242     location_info = None
243     port_ref_vdu_id = ignore_case_get(port, "vdu_id")
244     for vdu in ignore_case_get(data, "vdus"):
245         if vdu["vdu_id"] == port_ref_vdu_id:
246             location_info = vdu["properties"]["location_info"]
247             if port["cp_id"] not in vdu["cps"]:
248                 vdu["cps"].append(port["cp_id"])
249             break
250     if not location_info:
251         err_msg = "vdu_id(%s) for cp(%s) is not defined."
252         raise VimException(err_msg % (port_ref_vdu_id, port["cp_id"]), ERR_CODE)
253     network_id = ignore_case_get(port, "networkId")
254     subnet_id = ignore_case_get(port, "subnetId")
255     if port["vl_id"] == "":
256         return
257     if not network_id:
258         network_id = get_res_id(res_cache, RES_NETWORK, port["vl_id"])
259         subnet_id = get_res_id(res_cache, RES_SUBNET, port["vl_id"])
260     param = {
261         "networkId": network_id,
262         "name": port["cp_id"]
263     }
264     set_opt_val(param, "subnetId", subnet_id)
265     set_opt_val(param, "macAddress", ignore_case_get(port["properties"], "mac_address"))
266     ip_address = []
267     for one_protocol_data in port["properties"]["protocol_data"]:
268         l3_address_data = one_protocol_data["address_data"]["l3_address_data"]  # l3 is not 13
269         fixed_ip_address = ignore_case_get(l3_address_data, "fixed_ip_address")
270         ip_address.extend(fixed_ip_address)
271     for one_virtual_network_interface in port["properties"].get("virtual_network_interface_requirements", []):
272         interfaceTypeString = one_virtual_network_interface["network_interface_requirements"]["interfaceType"]
273         interfaceType = json.loads(interfaceTypeString)["configurationValue"]
274         vnic_type = ignore_case_get(port["properties"], "vnic_type")
275         if vnic_type == "":
276             if interfaceType == "SR-IOV":
277                 set_opt_val(param, "vnicType", "direct")
278         else:
279             set_opt_val(param, "vnicType", vnic_type)
280
281     set_opt_val(param, "ip", ",".join(ip_address))
282     set_opt_val(param, "securityGroups", "")   # TODO
283     vim_id, tenant_name = location_info["vimid"], location_info["tenant"]
284     tenant_id = get_tenant_id(vim_cache, vim_id, tenant_name)
285     ret = api.create_port(vim_id, tenant_id, param)
286     ret["nodeId"] = port["cp_id"]
287     do_notify(res_type, ret)
288     set_res_cache(res_cache, res_type, port["cp_id"], ret["id"])
289
290
291 def create_flavor(vim_cache, res_cache, data, flavor, do_notify, res_type):
292     location_info = flavor["properties"]["location_info"]
293     vim_id, tenant_name = location_info["vimid"], location_info["tenant"]
294     virtual_compute = flavor["virtual_compute"]
295     virtual_storages = flavor["virtual_storages"]
296     virtual_cpu = ignore_case_get(virtual_compute, "virtual_cpu")
297     virtual_memory = ignore_case_get(virtual_compute, "virtual_memory")
298     param = {
299         "name": "Flavor_%s" % flavor["vdu_id"],
300         "vcpu": int(ignore_case_get(virtual_cpu, "num_virtual_cpu")),
301         "memory": int(ignore_case_get(virtual_memory, "virtual_mem_size").replace('MB', '').strip()),
302         "isPublic": True
303     }
304
305     # Get flavor id from OOF
306     vdu_id = ignore_case_get(flavor, "vdu_id", "")
307     flavor_id = ""
308     for one_vdu in location_info["vduInfo"]:
309         if one_vdu["vduName"] == vdu_id:
310             flavor_id = ignore_case_get(one_vdu, "flavorId", "")
311             break
312
313     # Add check if OOF return flavor id has value
314     # If value is not None, we use it.
315     # If value is None, we will create flavor again.
316     if flavor_id:
317         set_res_cache(res_cache, res_type, flavor["vdu_id"], flavor_id)
318     else:
319         for virtual_storage in virtual_storages:
320             vs_id = virtual_storage["virtual_storage_id"]
321             for vs in data["volume_storages"]:
322                 if vs["volume_storage_id"] == vs_id:
323                     disk_type = ignore_case_get(vs["properties"], "type_of_storage")
324                     disk_size = int(ignore_case_get(vs["properties"], "size_of_storage").replace('GB', '').replace('"', '').strip())
325                     if disk_type == "root":
326                         param["disk"] = disk_size
327                     elif disk_type == "ephemeral":
328                         param["ephemeral"] = disk_size
329                     elif disk_type == "swap":
330                         param["swap"] = disk_size
331         tenant_id = get_tenant_id(vim_cache, vim_id, tenant_name)
332         logger.debug("param:%s" % param)
333         ret = api.create_flavor(vim_id, tenant_id, param)
334         logger.debug("hhb ret:%s" % ret)
335         do_notify(res_type, ret)
336         set_res_cache(res_cache, res_type, flavor["vdu_id"], ret["id"])
337
338
339 def create_vm(vim_cache, res_cache, data, vm, do_notify, res_type):
340     location_info = vm["properties"]["location_info"]
341     vim_id, tenant_name = location_info["vimid"], location_info["tenant"]
342     tenant_id = get_tenant_id(vim_cache, vim_id, tenant_name)
343     param = {
344         "name": vm["properties"].get("name", "undefined"),
345         "flavorId": get_res_id(res_cache, RES_FLAVOR, vm["vdu_id"]),
346         "boot": {},
347         "nicArray": [],
348         "contextArray": [],
349         "volumeArray": []
350     }
351     # set boot param
352     if "artifacts" in vm and vm["artifacts"]:
353         param["boot"]["type"] = BOOT_FROM_IMAGE
354         img_name = ""
355         for artifact in vm["artifacts"]:
356             if artifact["artifact_name"] == "sw_image":
357                 # TODO: after DM define
358                 img_name = os.path.basename(artifact["file"])
359                 break
360         if not img_name:
361             raise VimException("Undefined image(%s)" % vm["artifacts"], ERR_CODE)
362         images = api.list_image(vim_id, tenant_id)
363         for image in images["images"]:
364             if img_name == image["name"]:
365                 param["boot"]["imageId"] = image["id"]
366                 break
367         if "imageId" not in param["boot"]:
368             raise VimException("Undefined artifacts image(%s)" % vm["artifacts"], ERR_CODE)
369     elif vm["virtual_storages"]:
370         param["boot"]["type"] = BOOT_FROM_VOLUME
371         vol_id = vm["virtual_storages"][0]["virtual_storage_id"]
372         param["boot"]["volumeId"] = get_res_id(res_cache, RES_VOLUME, vol_id)
373     else:
374         raise VimException("No image and volume defined", ERR_CODE)
375
376     for cp_id in ignore_case_get(vm, "cps"):
377         param["nicArray"].append({
378             "portId": get_res_id(res_cache, RES_PORT, cp_id)
379         })
380     param["contextArray"] = ignore_case_get(vm["properties"], "inject_files")
381     logger.debug("contextArray:%s", param["contextArray"])
382     for vol_data in ignore_case_get(vm, "volume_storages"):
383         vol_id = vol_data["volume_storage_id"]
384         param["volumeArray"].append({
385             "volumeId": get_res_id(res_cache, RES_VOLUME, vol_id)
386         })
387
388     user_data = base64.b64encode(bytes(ignore_case_get(vm["properties"], "user_data"), "utf-8")).decode("utf-8")
389     set_opt_val(param, "availabilityZone", ignore_case_get(location_info, "availability_zone"))
390     set_opt_val(param, "userdata", user_data)
391     set_opt_val(param, "metadata", ignore_case_get(vm["properties"], "meta_data"))
392     set_opt_val(param, "securityGroups", "")   # TODO List of names of security group
393     set_opt_val(param, "serverGroup", "")      # TODO the ServerGroup for anti-affinity and affinity
394
395     ret = api.create_vm(vim_id, tenant_id, param)
396     ret["ports"] = [nic.get("portId") for nic in param["nicArray"]]
397     do_notify(res_type, ret)
398     vm_id = ret["id"]
399     if ignore_case_get(ret, "name"):
400         vm_name = vm["properties"].get("name", "undefined")
401         logger.debug("vm_name:%s" % vm_name)
402     opt_vm_status = "Timeout"
403     retry_count, max_retry_count = 0, 100
404     while retry_count < max_retry_count:
405         vm_info = api.get_vm(vim_id, tenant_id, vm_id)
406         if vm_info["status"].upper() == "ACTIVE":
407             logger.debug("Vm(%s) is active", vm_id)
408             return
409         if vm_info["status"].upper() == "ERROR":
410             opt_vm_status = vm_info["status"]
411             break
412         time.sleep(2)
413         retry_count = retry_count + 1
414     raise VimException("Failed to create Vm(%s): %s." % (vm_name, opt_vm_status), ERR_CODE)
415
416
417 def list_port_of_vm(vim_cache, res_cache, data, port, do_notify, res_type):
418     location_info = None
419     vm_id = ignore_case_get(port, "vm_id")
420     port_ref_vdu_id = ignore_case_get(port, "vdu_id")
421     for vdu in ignore_case_get(data, "vdus"):
422         if vdu["vdu_id"] == port_ref_vdu_id:
423             location_info = vdu["properties"]["location_info"]
424             if port["cp_id"] not in vdu["cps"]:
425                 vdu["cps"].append(port["cp_id"])
426             break
427     if not location_info:
428         err_msg = "vdu_id(%s) for cp(%s) is not defined."
429         raise VimException(err_msg % (port_ref_vdu_id, port["cp_id"]), ERR_CODE)
430
431     vim_id, tenant_name = location_info["vimid"], location_info["tenant"]
432     tenant_id = get_tenant_id(vim_cache, vim_id, tenant_name)
433     ret = api.list_vm_port(vim_id, tenant_id, vm_id)
434     ret["nodeId"] = port["cp_id"]
435     do_notify(res_type, ret)
436     set_res_cache(res_cache, res_type, port["cp_id"], ret["id"])
437
438     return ret
439
440
441 def get_port_of_vm(vim_cache, res_cache, data, port, do_notify, res_type):
442     location_info = None
443     vm_id = ignore_case_get(port, "vm_id")
444     port_id = ignore_case_get(port, "cp_id")
445     port_ref_vdu_id = ignore_case_get(port, "vdu_id")
446     for vdu in ignore_case_get(data, "vdus"):
447         if vdu["vdu_id"] == port_ref_vdu_id:
448             location_info = vdu["properties"]["location_info"]
449             if port["cp_id"] not in vdu["cps"]:
450                 vdu["cps"].append(port["cp_id"])
451             break
452     if not location_info:
453         err_msg = "vdu_id(%s) for cp(%s) is not defined."
454         raise VimException(err_msg % (port_ref_vdu_id, port["cp_id"]), ERR_CODE)
455
456     vim_id, tenant_name = location_info["vimid"], location_info["tenant"]
457     tenant_id = get_tenant_id(vim_cache, vim_id, tenant_name)
458     ret = api.get_vm_port(vim_id, tenant_id, vm_id, port_id)
459     ret["nodeId"] = port["cp_id"]
460     do_notify(res_type, ret)
461     set_res_cache(res_cache, res_type, port["cp_id"], ret["id"])
462
463     return ret
464
465
466 def create_port_of_vm(vim_cache, res_cache, data, port, do_notify, res_type):
467     location_info = None
468     vm_id = ignore_case_get(port, "vm_id")
469     port_id = ignore_case_get(port, "port_id")
470     port_ref_vdu_id = ignore_case_get(port, "vdu_id")
471     for vdu in ignore_case_get(data, "vdus"):
472         if vdu["vdu_id"] == port_ref_vdu_id:
473             location_info = vdu["properties"]["location_info"]
474             if port["cp_id"] not in vdu["cps"]:
475                 vdu["cps"].append(port["cp_id"])
476             break
477     if not location_info:
478         err_msg = "vdu_id(%s) for cp(%s) is not defined."
479         raise VimException(err_msg % (port_ref_vdu_id, port["cp_id"]), ERR_CODE)
480     network_id = ignore_case_get(port, "networkId")
481     # subnet_id = ignore_case_get(port, "subnetId")
482     if not network_id:
483         network_id = get_res_id(res_cache, RES_NETWORK, port["vl_id"])
484     #    subnet_id = get_res_id(res_cache, RES_SUBNET, port["vl_id"])
485     # param = {
486     #     "networkId": network_id,
487     #     "name": port["cp_id"]
488     # }
489     # set_opt_val(param, "subnetId", subnet_id)
490     # set_opt_val(param, "macAddress", ignore_case_get(port["properties"], "mac_address"))
491     # ip_address = []
492     # for one_protocol_data in port["properties"]["protocol_data"]:
493     #     l3_address_data = one_protocol_data["address_data"]["l3_address_data"]  # l3 is not 13
494     #     fixed_ip_address = ignore_case_get(l3_address_data, "fixed_ip_address")
495     #     ip_address.extend(fixed_ip_address)
496     # for one_virtual_network_interface in port["properties"].get("virtual_network_interface_requirements", []):
497     #     interfaceTypeString = one_virtual_network_interface["network_interface_requirements"]["interfaceType"]
498     #     interfaceType = json.loads(interfaceTypeString)["configurationValue"]
499     #     vnic_type = ignore_case_get(port["properties"], "vnic_type")
500     #     if vnic_type == "":
501     #         if interfaceType == "SR-IOV":
502     #             set_opt_val(param, "vnicType", "direct")
503     #     else:
504     #         set_opt_val(param, "vnicType", vnic_type)
505     #
506     # set_opt_val(param, "ip", ",".join(ip_address))
507     # set_opt_val(param, "securityGroups", "")  # TODO
508     vim_id, tenant_name = location_info["vimid"], location_info["tenant"]
509     tenant_id = get_tenant_id(vim_cache, vim_id, tenant_name)
510
511     # ip_address = ignore_case_get(ignore_case_get(port, "properties"), "ip_address")
512     param = {
513         "interfaceAttachment": {
514             "port_id": port_id
515         }
516     }
517     ret = api.create_vm_port(vim_id, tenant_id, vm_id, param)
518     ret["nodeId"] = port["cp_id"]
519     do_notify(res_type, ret)
520
521
522 def delete_port_of_vm(vim_cache, res_cache, data, port, do_notify, res_type):
523     location_info = None
524     vm_id = ignore_case_get(port, "vm_id")
525     port_id = ignore_case_get(port, "cp_id")
526     port_ref_vdu_id = ignore_case_get(port, "vdu_id")
527     for vdu in ignore_case_get(data, "vdus"):
528         if vdu["vdu_id"] == port_ref_vdu_id:
529             location_info = vdu["properties"]["location_info"]
530             if port["cp_id"] not in vdu["cps"]:
531                 vdu["cps"].append(port["cp_id"])
532             break
533     if not location_info:
534         err_msg = "vdu_id(%s) for cp(%s) is not defined."
535         raise VimException(err_msg % (port_ref_vdu_id, port["cp_id"]), ERR_CODE)
536
537     vim_id, tenant_name = location_info["vimid"], location_info["tenant"]
538     tenant_id = get_tenant_id(vim_cache, vim_id, tenant_name)
539     ret = api.delete_vm_port(vim_id, tenant_id, vm_id, port_id)
540     ret["nodeId"] = port["cp_id"]
541     do_notify("delete", res_type, port_id)
542     set_res_cache(res_cache, res_type, port["cp_id"], ret["id"])