Optimized code logic of termination vnfs
[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 sys
17 import time
18 import traceback
19
20 from lcm.pub.utils.values import ignore_case_get, set_opt_val
21 from . import api
22 from .exceptions import VimException
23
24 logger = logging.getLogger(__name__)
25
26 ERR_CODE = "500"
27 RES_EXIST, RES_NEW = 0, 1
28 IP_V4, IP_V6 = 4, 6
29 BOOT_FROM_VOLUME, BOOT_FROM_IMAGE = 1, 2
30
31 RES_VOLUME = "volume"
32 RES_NETWORK = "network"
33 RES_SUBNET = "subnet"
34 RES_PORT = "port"
35 RES_FLAVOR = "flavor"
36 RES_VM = "vm"
37
38
39 def get_tenant_id(vim_cache, vim_id, tenant_name):
40     if vim_id not in vim_cache:
41         tenants = api.list_tenant(vim_id)
42         vim_cache[vim_id] = {}
43         for tenant in tenants["tenants"]:
44             id, name = tenant["id"], tenant["name"]
45             vim_cache[vim_id][name] = id
46     if tenant_name not in vim_cache[vim_id]:
47         raise VimException("Tenant(%s) not found in vim(%s)" % (tenant_name, vim_id), ERR_CODE)
48     return vim_cache[vim_id][tenant_name]
49
50 def set_res_cache(res_cache, res_type, key, val):
51     if res_type not in res_cache:
52         res_cache[res_type] = {}
53     if key in res_cache[res_type]:
54         raise VimException("Duplicate key(%s) of %s" % (key, res_type), ERR_CODE)
55     res_cache[res_type][key] = val
56
57 def get_res_id(res_cache, res_type, key):
58     if res_type not in res_cache:
59         raise VimException("%s not found in cache" % res_type, ERR_CODE)
60     if key not in res_cache[res_type]:
61         raise VimException("%s(%s) not found in cache" % (res_type, key), ERR_CODE)
62     return res_cache[res_type][key]
63
64 def create_vim_res(data, do_notify):
65     vim_cache, res_cache = {}, {}
66     for vol in ignore_case_get(data, "volume_storages"):
67         create_volume(vim_cache, res_cache, vol, do_notify, RES_VOLUME)
68     for network in ignore_case_get(data, "vls"):
69         create_network(vim_cache, res_cache, network, do_notify, RES_NETWORK)
70     for subnet in ignore_case_get(data, "vls"):
71         create_subnet(vim_cache, res_cache, subnet, do_notify, RES_SUBNET)
72     for port in ignore_case_get(data, "cps"):
73         create_port(vim_cache, res_cache, data, port, do_notify, RES_PORT)
74     for flavor in ignore_case_get(data, "vdus"):
75         create_flavor(vim_cache, res_cache, data, flavor, do_notify, RES_FLAVOR)
76     for vm in ignore_case_get(data, "vdus"):
77         create_vm(vim_cache, res_cache, data, vm, do_notify, RES_VM)
78
79 def delete_vim_res(data, do_notify):
80     res_types = [RES_VM, RES_FLAVOR, RES_PORT, RES_SUBNET, RES_NETWORK, RES_VOLUME]
81     res_del_funs = [api.delete_vm, api.delete_flavor, api.delete_port, 
82         api.delete_subnet, api.delete_network, api.delete_volume]
83     for res_type, res_del_fun in zip(res_types, res_del_funs):
84         for res in ignore_case_get(data, res_type):
85             try:
86                 if 1 == res["is_predefined"]:
87                     res_del_fun(res["vim_id"], res["tenant_id"], res["res_id"])
88             except VimException as e:
89                 logger.error("Failed to delete %s(%s)", res_type, res["res_id"])
90                 logger.error("%s:%s", e.http_code, e.message)
91             do_notify(res_type, res["res_id"])
92
93 def create_volume(vim_cache, res_cache, vol, do_notify, res_type):
94     location_info = vol["properties"]["location_info"]
95     param = {
96         "name": vol["properties"]["volume_name"],
97         "volumeSize": int(ignore_case_get(vol["properties"], "size", "0").replace('GB', '').strip())
98     }
99     set_opt_val(param, "imageName", ignore_case_get(vol, "image_file"))
100     set_opt_val(param, "volumeType", ignore_case_get(vol["properties"], "custom_volume_type"))
101     set_opt_val(param, "availabilityZone", ignore_case_get(location_info, "availability_zone"))
102     vim_id, tenant_name = location_info["vimid"], location_info["tenant"]
103     tenant_id = get_tenant_id(vim_cache, vim_id, tenant_name)
104     ret = api.create_volume(vim_id, tenant_id, param)
105     ret["nodeId"] = vol["volume_storage_id"]
106     do_notify(res_type, ret)
107     vol_id, vol_name, return_code = ret["id"], ret["name"], ret["returnCode"]
108     set_res_cache(res_cache, res_type, vol["volume_storage_id"], vol_id)
109     retry_count, max_retry_count = 0, 300
110     while retry_count < max_retry_count:
111         vol_info = api.get_volume(vim_id, tenant_id, vol_id)
112         if vol_info["status"].upper() == "AVAILABLE":
113             logger.debug("Volume(%s) is available", vol_id)
114             return
115         time.sleep(2)
116         retry_count = retry_count + 1
117     raise VimException("Failed to create Volume(%s): Timeout." % vol_name, ERR_CODE)
118     
119 def create_network(vim_cache, res_cache, network, do_notify, res_type):
120     location_info = network["properties"]["location_info"]
121     param = {
122         "name": network["properties"]["network_name"],
123         "shared": False,
124         "networkType": network["properties"]["network_type"],
125         "physicalNetwork": ignore_case_get(network["properties"], "physical_network")
126     }
127     set_opt_val(param, "vlanTransparent", ignore_case_get(network["properties"], "vlan_transparent"))
128     set_opt_val(param, "segmentationId", int(ignore_case_get(network["properties"], "segmentation_id", "0")))
129     set_opt_val(param, "routerExternal", ignore_case_get(network, "route_external"))
130     vim_id, tenant_name = location_info["vimid"], location_info["tenant"]
131     tenant_id = get_tenant_id(vim_cache, vim_id, tenant_name)
132     ret = api.create_network(vim_id, tenant_id, param)
133     ret["nodeId"] = network["vl_id"]
134     do_notify(res_type, ret)
135     set_res_cache(res_cache, res_type, network["vl_id"], ret["id"])
136     
137 def create_subnet(vim_cache, res_cache, subnet, do_notify, res_type):
138     location_info = subnet["properties"]["location_info"]
139     network_id = get_res_id(res_cache, RES_NETWORK, subnet["vl_id"])
140     param = {
141         "networkId": network_id,
142         "name": subnet["properties"]["name"],
143         "cidr": ignore_case_get(subnet["properties"], "cidr"),
144         "ipVersion": ignore_case_get(subnet["properties"], "ip_version", IP_V4)
145     }
146     set_opt_val(param, "enableDhcp", ignore_case_get(subnet["properties"], "dhcp_enabled"))
147     set_opt_val(param, "gatewayIp", ignore_case_get(subnet["properties"], "gateway_ip"))
148     set_opt_val(param, "dnsNameservers", ignore_case_get(subnet["properties"], "dns_nameservers"))
149     allocation_pool = {}
150     set_opt_val(allocation_pool, "start", ignore_case_get(subnet["properties"], "start_ip"))
151     set_opt_val(allocation_pool, "end", ignore_case_get(subnet["properties"], "end_ip"))
152     if allocation_pool:
153         param["allocationPools"] = [allocation_pool]
154     set_opt_val(param, "hostRoutes", ignore_case_get(subnet["properties"], "host_routes"))
155     vim_id, tenant_name = location_info["vimid"], location_info["tenant"]
156     tenant_id = get_tenant_id(vim_cache, vim_id, tenant_name)
157     ret = api.create_subnet(vim_id, tenant_id, param)
158     do_notify(res_type, ret)
159     set_res_cache(res_cache, res_type, subnet["vl_id"], ret["id"])
160     
161 def create_port(vim_cache, res_cache, data, port, do_notify, res_type):
162     location_info = None
163     port_ref_vdu_id = ignore_case_get(port, "vdu_id")
164     for vdu in ignore_case_get(data, "vdus"):
165         if vdu["vdu_id"] == port_ref_vdu_id:
166             location_info = vdu["properties"]["location_info"]
167             if port["cp_id"] not in vdu["cps"]:
168                 vdu["cps"].append(port["cp_id"])
169             break
170     if not location_info:
171         err_msg = "vdu_id(%s) for cp(%s) is not defined"
172         raise VimException(err_msg % (port_ref_vdu_id, port["cp_id"]), ERR_CODE)
173     network_id = ignore_case_get(port, "networkId")
174     subnet_id = ignore_case_get(port, "subnetId")
175     if not network_id:
176         network_id = get_res_id(res_cache, RES_NETWORK, port["vl_id"])
177         subnet_id = get_res_id(res_cache, RES_SUBNET, port["vl_id"])
178     param = {
179         "networkId": network_id,
180         "name": port["properties"].get("name","undefined")
181     }
182     set_opt_val(param, "subnetId", subnet_id)
183     set_opt_val(param, "macAddress", ignore_case_get(port["properties"], "mac_address"))
184     set_opt_val(param, "ip", ignore_case_get(port["properties"], "ip_address"))
185     set_opt_val(param, "vnicType", ignore_case_get(port["properties"], "vnic_type"))
186     set_opt_val(param, "securityGroups", "") # TODO
187     vim_id, tenant_name = location_info["vimid"], location_info["tenant"]
188     tenant_id = get_tenant_id(vim_cache, vim_id, tenant_name)
189     ret = api.create_port(vim_id, tenant_id, param)
190     ret["nodeId"] = port["cp_id"]
191     do_notify(res_type, ret)
192     set_res_cache(res_cache, res_type, port["cp_id"], ret["id"])
193
194 def create_flavor(vim_cache, res_cache, data, flavor, do_notify, res_type):
195     location_info = flavor["properties"]["location_info"]
196     local_storages = ignore_case_get(data, "local_storages")
197     param = {
198         "name": "Flavor_%s" % flavor["vdu_id"],
199         "vcpu": int(flavor["nfv_compute"]["num_cpus"]),
200         "memory": int(flavor["nfv_compute"]["mem_size"].replace('GB', '').strip()),
201         "isPublic": True
202     }
203     for local_storage_id in ignore_case_get(flavor, "local_storages"):
204         for local_storage in local_storages:
205             if local_storage_id != local_storage["local_storage_id"]:
206                 continue
207             disk_type = local_storage["properties"]["disk_type"]
208             disk_size = int(local_storage["properties"]["size"].replace('GB', '').strip())
209             if disk_type == "root":
210                 param["disk"] = disk_size
211             elif disk_type == "ephemeral":
212                 param["ephemeral"] = disk_size
213             elif disk_type == "swap":
214                 param["swap"] = disk_size
215     flavor_extra_specs = ignore_case_get(flavor["nfv_compute"], "flavor_extra_specs")
216     extra_specs = []
217     for es in flavor_extra_specs:
218         extra_specs.append({"keyName": es, "value": flavor_extra_specs[es]})
219     set_opt_val(param, "extraSpecs", extra_specs)
220     vim_id, tenant_name = location_info["vimid"], location_info["tenant"]
221     tenant_id = get_tenant_id(vim_cache, vim_id, tenant_name)
222     ret = api.create_flavor(vim_id, tenant_id, param)
223     do_notify(res_type, ret)
224     set_res_cache(res_cache, res_type, flavor["vdu_id"], ret["id"])
225     
226 def create_vm(vim_cache, res_cache, data, vm, do_notify, res_type):
227     location_info = vm["properties"]["location_info"]
228     vim_id, tenant_name = location_info["vimid"], location_info["tenant"]
229     tenant_id = get_tenant_id(vim_cache, vim_id, tenant_name)
230     param = {
231         "name": vm["properties"].get("name","undefined"),
232         "flavorId": get_res_id(res_cache, RES_FLAVOR, vm["vdu_id"]),
233         "boot": {},
234         "nicArray": [],
235         "contextArray": [],
236         "volumeArray": []
237     }
238     # set boot param
239     if "image_file" in vm and vm["image_file"]:
240         param["boot"]["type"] = BOOT_FROM_IMAGE
241         img_name = ""
242         for img in ignore_case_get(data, "image_files"):
243             if vm["image_file"] == img["image_file_id"]:
244                img_name = img["properties"]["name"]
245                break
246         if not img_name:
247             raise VimException("Undefined image(%s)" % vm["image_file"], ERR_CODE)
248         images = api.list_image(vim_id, tenant_id)
249         for image in images["images"]:
250             if img_name == image["name"]:
251                 param["boot"]["imageId"] = image["id"]
252                 break
253         if "imageId" not in param["boot"]:
254             raise VimException("Image(%s) not found in Vim(%s)" % (img_name, vim_id), ERR_CODE)
255     elif vm["volume_storages"]:
256         param["boot"]["type"] = BOOT_FROM_VOLUME
257         vol_id = vm["volume_storages"][0]["volume_storage_id"]
258         param["boot"]["volumeId"] = get_res_id(res_cache, RES_VOLUME, vol_id)
259     else:
260         raise VimException("No image and volume defined", ERR_CODE)
261
262     for cp_id in ignore_case_get(vm, "cps"):
263         param["nicArray"].append({
264             "portId": get_res_id(res_cache, RES_PORT, cp_id)
265         })
266     for inject_data in ignore_case_get(vm["properties"], "inject_data_list"):
267         param["contextArray"].append({
268             "fileName": inject_data["file_name"],
269             "fileData": inject_data["file_data"]
270         })
271     for vol_data in ignore_case_get(vm, "volume_storages"):
272         vol_id = vol_data["volume_storage_id"]
273         param["volumeArray"].append({
274             "volumeId": get_res_id(res_cache, RES_VOLUME, vol_id)
275         })
276
277     set_opt_val(param, "availabilityZone", ignore_case_get(location_info, "availability_zone"))
278     set_opt_val(param, "userdata", "") # TODO Configuration information or scripts to use upon launch
279     set_opt_val(param, "metadata", "") # TODO [{"keyName": "foo", "value": "foo value"}]
280     set_opt_val(param, "securityGroups", "") # TODO List of names of security group
281     set_opt_val(param, "serverGroup", "") # TODO the ServerGroup for anti-affinity and affinity
282     
283     ret = api.create_vm(vim_id, tenant_id, param)
284     do_notify(res_type, ret)
285     #vm_id, vm_name, return_code = ret["id"], ret["name"], ret["returnCode"]
286     vm_id, return_code = ret["id"], ret["returnCode"]
287     if ignore_case_get(ret, "name"):
288         vm_name = vm["properties"].get("name", "undefined")
289         logger.debug("vm_name:%s" % vm_name)
290     opt_vm_status = "Timeout"
291     retry_count, max_retry_count = 0, 100
292     while retry_count < max_retry_count:
293         vm_info = api.get_vm(vim_id, tenant_id, vm_id)
294         if vm_info["status"].upper() == "ACTIVE":
295             logger.debug("Vm(%s) is active", vim_id)
296             return
297         if vm_info["status"].upper() == "ERROR":
298             opt_vm_status = vm_info["status"]
299             break
300         time.sleep(2)
301         retry_count = retry_count + 1
302     raise VimException("Failed to create Vm(%s): %s." % (vm_name, opt_vm_status), ERR_CODE)