Fix wrong virtual storages structure
[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 = ignore_case_get(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         if virtual_storages:
320             for virtual_storage in virtual_storages:
321                 vs_id = virtual_storage["virtual_storage_id"]
322                 for vs in data["volume_storages"]:
323                     if vs["volume_storage_id"] == vs_id:
324                         disk_type = ignore_case_get(vs["properties"], "type_of_storage")
325                         size_of_storage = ignore_case_get(vs["properties"], "size_of_storage")
326                         disk_size = int(size_of_storage.replace('GB', '').replace('"', '').strip())
327                         if disk_type == "root":
328                             param["disk"] = disk_size
329                         elif disk_type == "ephemeral":
330                             param["ephemeral"] = disk_size
331                         elif disk_type == "swap":
332                             param["swap"] = disk_size
333         else:
334             virtual_storages = ignore_case_get(virtual_compute, "virtual_storages")
335             size_of_storage = ignore_case_get(virtual_storages[0], "size_of_storage")
336             disk_size = int(size_of_storage.replace('GB', '').replace('"', '').strip())
337             param["disk"] = disk_size
338
339         tenant_id = get_tenant_id(vim_cache, vim_id, tenant_name)
340         logger.debug("param:%s" % param)
341         ret = api.create_flavor(vim_id, tenant_id, param)
342         logger.debug("hhb ret:%s" % ret)
343         do_notify(res_type, ret)
344         set_res_cache(res_cache, res_type, flavor["vdu_id"], ret["id"])
345
346
347 def create_vm(vim_cache, res_cache, data, vm, do_notify, res_type):
348     location_info = vm["properties"]["location_info"]
349     vim_id, tenant_name = location_info["vimid"], location_info["tenant"]
350     tenant_id = get_tenant_id(vim_cache, vim_id, tenant_name)
351     param = {
352         "name": vm["properties"].get("name", "undefined"),
353         "flavorId": get_res_id(res_cache, RES_FLAVOR, vm["vdu_id"]),
354         "boot": {},
355         "nicArray": [],
356         "contextArray": [],
357         "volumeArray": []
358     }
359     # set boot param
360     if "artifacts" in vm and vm["artifacts"]:
361         param["boot"]["type"] = BOOT_FROM_IMAGE
362         img_name = ""
363         for artifact in vm["artifacts"]:
364             if artifact["artifact_name"] == "sw_image":
365                 # TODO: after DM define
366                 img_name = os.path.basename(artifact["file"])
367                 break
368         if not img_name:
369             raise VimException("Undefined image(%s)" % vm["artifacts"], ERR_CODE)
370         images = api.list_image(vim_id, tenant_id)
371         for image in images["images"]:
372             if img_name == image["name"]:
373                 param["boot"]["imageId"] = image["id"]
374                 break
375         if "imageId" not in param["boot"]:
376             raise VimException("Undefined artifacts image(%s)" % vm["artifacts"], ERR_CODE)
377     elif vm["virtual_storages"]:
378         param["boot"]["type"] = BOOT_FROM_VOLUME
379         vol_id = vm["virtual_storages"][0]["virtual_storage_id"]
380         param["boot"]["volumeId"] = get_res_id(res_cache, RES_VOLUME, vol_id)
381     else:
382         raise VimException("No image and volume defined", ERR_CODE)
383
384     for cp_id in ignore_case_get(vm, "cps"):
385         param["nicArray"].append({
386             "portId": get_res_id(res_cache, RES_PORT, cp_id)
387         })
388     param["contextArray"] = ignore_case_get(vm["properties"], "inject_files")
389     logger.debug("contextArray:%s", param["contextArray"])
390     for vol_data in ignore_case_get(vm, "volume_storages"):
391         vol_id = vol_data["volume_storage_id"]
392         param["volumeArray"].append({
393             "volumeId": get_res_id(res_cache, RES_VOLUME, vol_id)
394         })
395
396     user_data = base64.b64encode(bytes(ignore_case_get(vm["properties"], "user_data"), "utf-8")).decode("utf-8")
397     set_opt_val(param, "availabilityZone", ignore_case_get(location_info, "availability_zone"))
398     set_opt_val(param, "userdata", user_data)
399     set_opt_val(param, "metadata", ignore_case_get(vm["properties"], "meta_data"))
400     set_opt_val(param, "securityGroups", "")   # TODO List of names of security group
401     set_opt_val(param, "serverGroup", "")      # TODO the ServerGroup for anti-affinity and affinity
402
403     ret = api.create_vm(vim_id, tenant_id, param)
404     ret["ports"] = [nic.get("portId") for nic in param["nicArray"]]
405     do_notify(res_type, ret)
406     vm_id = ret["id"]
407     if ignore_case_get(ret, "name"):
408         vm_name = vm["properties"].get("name", "undefined")
409         logger.debug("vm_name:%s" % vm_name)
410     opt_vm_status = "Timeout"
411     retry_count, max_retry_count = 0, 100
412     while retry_count < max_retry_count:
413         vm_info = api.get_vm(vim_id, tenant_id, vm_id)
414         if vm_info["status"].upper() == "ACTIVE":
415             logger.debug("Vm(%s) is active", vm_id)
416             return
417         if vm_info["status"].upper() == "ERROR":
418             opt_vm_status = vm_info["status"]
419             break
420         time.sleep(2)
421         retry_count = retry_count + 1
422     raise VimException("Failed to create Vm(%s): %s." % (vm_name, opt_vm_status), ERR_CODE)
423
424
425 def list_port_of_vm(vim_cache, res_cache, data, port, do_notify, res_type):
426     location_info = None
427     vm_id = ignore_case_get(port, "vm_id")
428     port_ref_vdu_id = ignore_case_get(port, "vdu_id")
429     for vdu in ignore_case_get(data, "vdus"):
430         if vdu["vdu_id"] == port_ref_vdu_id:
431             location_info = vdu["properties"]["location_info"]
432             if port["cp_id"] not in vdu["cps"]:
433                 vdu["cps"].append(port["cp_id"])
434             break
435     if not location_info:
436         err_msg = "vdu_id(%s) for cp(%s) is not defined."
437         raise VimException(err_msg % (port_ref_vdu_id, port["cp_id"]), ERR_CODE)
438
439     vim_id, tenant_name = location_info["vimid"], location_info["tenant"]
440     tenant_id = get_tenant_id(vim_cache, vim_id, tenant_name)
441     ret = api.list_vm_port(vim_id, tenant_id, vm_id)
442     ret["nodeId"] = port["cp_id"]
443     do_notify(res_type, ret)
444     set_res_cache(res_cache, res_type, port["cp_id"], ret["id"])
445
446     return ret
447
448
449 def get_port_of_vm(vim_cache, res_cache, data, port, do_notify, res_type):
450     location_info = None
451     vm_id = ignore_case_get(port, "vm_id")
452     port_id = ignore_case_get(port, "cp_id")
453     port_ref_vdu_id = ignore_case_get(port, "vdu_id")
454     for vdu in ignore_case_get(data, "vdus"):
455         if vdu["vdu_id"] == port_ref_vdu_id:
456             location_info = vdu["properties"]["location_info"]
457             if port["cp_id"] not in vdu["cps"]:
458                 vdu["cps"].append(port["cp_id"])
459             break
460     if not location_info:
461         err_msg = "vdu_id(%s) for cp(%s) is not defined."
462         raise VimException(err_msg % (port_ref_vdu_id, port["cp_id"]), ERR_CODE)
463
464     vim_id, tenant_name = location_info["vimid"], location_info["tenant"]
465     tenant_id = get_tenant_id(vim_cache, vim_id, tenant_name)
466     ret = api.get_vm_port(vim_id, tenant_id, vm_id, port_id)
467     ret["nodeId"] = port["cp_id"]
468     do_notify(res_type, ret)
469     set_res_cache(res_cache, res_type, port["cp_id"], ret["id"])
470
471     return ret
472
473
474 def create_port_of_vm(vim_cache, res_cache, data, port, do_notify, res_type):
475     location_info = None
476     vm_id = ignore_case_get(port, "vm_id")
477     port_id = ignore_case_get(port, "port_id")
478     port_ref_vdu_id = ignore_case_get(port, "vdu_id")
479     for vdu in ignore_case_get(data, "vdus"):
480         if vdu["vdu_id"] == port_ref_vdu_id:
481             location_info = vdu["properties"]["location_info"]
482             if port["cp_id"] not in vdu["cps"]:
483                 vdu["cps"].append(port["cp_id"])
484             break
485     if not location_info:
486         err_msg = "vdu_id(%s) for cp(%s) is not defined."
487         raise VimException(err_msg % (port_ref_vdu_id, port["cp_id"]), ERR_CODE)
488     network_id = ignore_case_get(port, "networkId")
489     # subnet_id = ignore_case_get(port, "subnetId")
490     if not network_id:
491         network_id = get_res_id(res_cache, RES_NETWORK, port["vl_id"])
492     #    subnet_id = get_res_id(res_cache, RES_SUBNET, port["vl_id"])
493     # param = {
494     #     "networkId": network_id,
495     #     "name": port["cp_id"]
496     # }
497     # set_opt_val(param, "subnetId", subnet_id)
498     # set_opt_val(param, "macAddress", ignore_case_get(port["properties"], "mac_address"))
499     # ip_address = []
500     # for one_protocol_data in port["properties"]["protocol_data"]:
501     #     l3_address_data = one_protocol_data["address_data"]["l3_address_data"]  # l3 is not 13
502     #     fixed_ip_address = ignore_case_get(l3_address_data, "fixed_ip_address")
503     #     ip_address.extend(fixed_ip_address)
504     # for one_virtual_network_interface in port["properties"].get("virtual_network_interface_requirements", []):
505     #     interfaceTypeString = one_virtual_network_interface["network_interface_requirements"]["interfaceType"]
506     #     interfaceType = json.loads(interfaceTypeString)["configurationValue"]
507     #     vnic_type = ignore_case_get(port["properties"], "vnic_type")
508     #     if vnic_type == "":
509     #         if interfaceType == "SR-IOV":
510     #             set_opt_val(param, "vnicType", "direct")
511     #     else:
512     #         set_opt_val(param, "vnicType", vnic_type)
513     #
514     # set_opt_val(param, "ip", ",".join(ip_address))
515     # set_opt_val(param, "securityGroups", "")  # TODO
516     vim_id, tenant_name = location_info["vimid"], location_info["tenant"]
517     tenant_id = get_tenant_id(vim_cache, vim_id, tenant_name)
518
519     # ip_address = ignore_case_get(ignore_case_get(port, "properties"), "ip_address")
520     param = {
521         "interfaceAttachment": {
522             "port_id": port_id
523         }
524     }
525     ret = api.create_vm_port(vim_id, tenant_id, vm_id, param)
526     ret["nodeId"] = port["cp_id"]
527     do_notify(res_type, ret)
528
529
530 def delete_port_of_vm(vim_cache, res_cache, data, port, do_notify, res_type):
531     location_info = None
532     vm_id = ignore_case_get(port, "vm_id")
533     port_id = ignore_case_get(port, "cp_id")
534     port_ref_vdu_id = ignore_case_get(port, "vdu_id")
535     for vdu in ignore_case_get(data, "vdus"):
536         if vdu["vdu_id"] == port_ref_vdu_id:
537             location_info = vdu["properties"]["location_info"]
538             if port["cp_id"] not in vdu["cps"]:
539                 vdu["cps"].append(port["cp_id"])
540             break
541     if not location_info:
542         err_msg = "vdu_id(%s) for cp(%s) is not defined."
543         raise VimException(err_msg % (port_ref_vdu_id, port["cp_id"]), ERR_CODE)
544
545     vim_id, tenant_name = location_info["vimid"], location_info["tenant"]
546     tenant_id = get_tenant_id(vim_cache, vim_id, tenant_name)
547     ret = api.delete_vm_port(vim_id, tenant_id, vm_id, port_id)
548     ret["nodeId"] = port["cp_id"]
549     do_notify("delete", res_type, port_id)
550     set_res_cache(res_cache, res_type, port["cp_id"], ret["id"])