blob: 8b4a35064f270f5b18e086e29d45a288b4fee455 [file] [log] [blame]
peusterm8246f982019-06-06 17:43:34 +02001
peusterm20e54452018-08-06 16:09:23 +02002# Copyright (c) 2018 SONATA-NFV, 5GTANGO and Paderborn University
3# ALL RIGHTS RESERVED.
4#
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16#
17# Neither the name of the SONATA-NFV, 5GTANGO, Paderborn University
18# nor the names of its contributors may be used to endorse or promote
19# products derived from this software without specific prior written
20# permission.
21#
22# This work has been performed in the framework of the SONATA project,
23# funded by the European Commission under Grant number 671517 through
24# the Horizon 2020 and 5G-PPP programmes. The authors would like to
25# acknowledge the contributions of their colleagues of the SONATA
26# partner consortium (www.sonata-nfv.eu).
27#
28# This work has also been performed in the framework of the 5GTANGO project,
29# funded by the European Commission under Grant number 761493 through
30# the Horizon 2020 and 5G-PPP programmes. The authors would like to
31# acknowledge the contributions of their colleagues of the 5GTANGO
32# partner consortium (www.5gtango.eu).
33import logging
34import os
35import uuid
36import hashlib
37import zipfile
38import yaml
39import threading
peusterm8246f982019-06-06 17:43:34 +020040import datetime
peusterm20e54452018-08-06 16:09:23 +020041from docker import DockerClient
42from flask import Flask, request
43import flask_restful as fr
peustermf8f135c2019-03-19 17:05:57 +010044from gevent.pywsgi import WSGIServer
peusterm20e54452018-08-06 16:09:23 +020045from subprocess import Popen
peusterm20e54452018-08-06 16:09:23 +020046import ipaddress
47import copy
48import time
peusterm20e54452018-08-06 16:09:23 +020049
50
51LOG = logging.getLogger("5gtango.llcm")
52LOG.setLevel(logging.INFO)
53
54
55GK_STORAGE = "/tmp/vim-emu-tango-llcm/"
56UPLOAD_FOLDER = os.path.join(GK_STORAGE, "uploads/")
57CATALOG_FOLDER = os.path.join(GK_STORAGE, "catalog/")
58
59# Enable Dockerfile build functionality
60BUILD_DOCKERFILE = False
61
62# flag to indicate that we run without the emulator (only the bare API for
63# integration testing)
64GK_STANDALONE_MODE = False
65
66# should a new version of an image be pulled even if its available
67FORCE_PULL = False
68
peusterm20e54452018-08-06 16:09:23 +020069# flag to indicate if we use bidirectional forwarding rules in the
70# automatic chaining process
peusterm37911562018-10-18 15:03:55 +020071BIDIRECTIONAL_CHAIN = True
peusterm20e54452018-08-06 16:09:23 +020072
73# override the management interfaces in the descriptors with default
74# docker0 interfaces in the containers
75USE_DOCKER_MGMT = False
76
77# automatically deploy uploaded packages (no need to execute son-access
78# deploy --latest separately)
79AUTO_DEPLOY = False
80
81# and also automatically terminate any other running services
82AUTO_DELETE = False
83
peusterm17008d02018-12-19 09:58:17 +010084# global subnet definitions (see reset_subnets())
85ELAN_SUBNETS = None
86ELINE_SUBNETS = None
peusterm20e54452018-08-06 16:09:23 +020087
88# Time in seconds to wait for vnf stop scripts to execute fully
89VNF_STOP_WAIT_TIME = 5
90
peusterm8c6b10b2019-04-13 12:49:41 +020091# If services are instantiated multiple times, the public port
92# mappings need to be adapted to avoid colisions. We use this
93# offset for this: NEW_PORT (SSIID * OFFSET) + ORIGINAL_PORT
94MULTI_INSTANCE_PORT_OFFSET = 1000
95
peusterm36d40332019-06-11 14:55:44 +020096# Selected Placement Algorithm: Points to the class of the selected
97# placement algorithm.
98PLACEMENT_ALGORITHM_OBJ = None
99
peusterm5a5f4052019-06-11 16:31:56 +0200100# Path to folder with <container_name>.env.yml files that contain
101# environment variables injected into the specific container
102# when it is started.
103PER_INSTANCE_ENV_CONFIGURATION_FOLDER = None
104
peusterm36d40332019-06-11 14:55:44 +0200105
peusterm20e54452018-08-06 16:09:23 +0200106class OnBoardingException(BaseException):
107 pass
108
109
110class Gatekeeper(object):
111
112 def __init__(self):
113 self.services = dict()
114 self.dcs = dict()
115 self.net = None
116 # used to generate short names for VNFs (Mininet limitation)
117 self.vnf_counter = 0
peusterm17008d02018-12-19 09:58:17 +0100118 reset_subnets()
peusterm20e54452018-08-06 16:09:23 +0200119 LOG.info("Initialized 5GTANGO LLCM module.")
120
121 def register_service_package(self, service_uuid, service):
122 """
123 register new service package
124 :param service_uuid
125 :param service object
126 """
127 self.services[service_uuid] = service
128 # lets perform all steps needed to onboard the service
129 service.onboard()
130
peusterm20e54452018-08-06 16:09:23 +0200131
132class Service(object):
133 """
134 This class represents a NS uploaded as a *.son package to the
135 dummy gatekeeper.
136 Can have multiple running instances of this service.
137 """
138
139 def __init__(self,
140 service_uuid,
141 package_file_hash,
142 package_file_path):
143 self.uuid = service_uuid
144 self.package_file_hash = package_file_hash
145 self.package_file_path = package_file_path
146 self.package_content_path = os.path.join(
147 CATALOG_FOLDER, "services/%s" % self.uuid)
148 self.manifest = None
149 self.nsd = None
150 self.vnfds = dict()
peusterm20e54452018-08-06 16:09:23 +0200151 self.local_docker_files = dict()
152 self.remote_docker_image_urls = dict()
153 self.instances = dict()
peusterm8c6b10b2019-04-13 12:49:41 +0200154 self._instance_counter = 0
peusterm8246f982019-06-06 17:43:34 +0200155 self.created_at = str(datetime.datetime.now())
peusterm20e54452018-08-06 16:09:23 +0200156
157 def onboard(self):
158 """
159 Do all steps to prepare this service to be instantiated
160 :return:
161 """
162 # 1. extract the contents of the package and store them in our catalog
163 self._unpack_service_package()
164 # 2. read in all descriptor files
165 self._load_package_descriptor()
166 self._load_nsd()
167 self._load_vnfd()
168 if self.nsd is None:
169 raise OnBoardingException("No NSD found.")
170 if len(self.vnfds) < 1:
171 raise OnBoardingException("No VNFDs found.")
peusterm20e54452018-08-06 16:09:23 +0200172 # 3. prepare container images (e.g. download or build Dockerfile)
173 if BUILD_DOCKERFILE:
174 self._load_docker_files()
175 self._build_images_from_dockerfiles()
176 else:
177 self._load_docker_urls()
178 self._pull_predefined_dockerimages()
peusterm8c6b10b2019-04-13 12:49:41 +0200179 # 4. reserve subnets
180 eline_fwd_links, elan_fwd_links = self._get_elines_and_elans()
181 self.eline_subnets = [ELINE_SUBNETS.pop(0) for _ in eline_fwd_links]
182 self.elan_subnets = [ELAN_SUBNETS.pop(0) for _ in elan_fwd_links]
183 LOG.debug("Reserved subnets for service '{}': E-Line: {} / E-LAN: {}"
184 .format(self.manifest.get("name"),
185 self.eline_subnets, self.elan_subnets))
186 LOG.info("On-boarded service: {}".format(self.manifest.get("name")))
peusterm20e54452018-08-06 16:09:23 +0200187
188 def start_service(self):
189 """
190 This methods creates and starts a new service instance.
191 It computes placements, iterates over all VNFDs, and starts
192 each VNFD as a Docker container in the data center selected
193 by the placement algorithm.
194 :return:
195 """
peusterm8c6b10b2019-04-13 12:49:41 +0200196 LOG.info("Starting service {} ({})"
197 .format(get_triple_id(self.nsd), self.uuid))
peusterm20e54452018-08-06 16:09:23 +0200198
199 # 1. each service instance gets a new uuid to identify it
200 instance_uuid = str(uuid.uuid4())
201 # build a instances dict (a bit like a NSR :))
202 self.instances[instance_uuid] = dict()
peusterm8c6b10b2019-04-13 12:49:41 +0200203 self.instances[instance_uuid]["uuid"] = self.uuid
204 # SSIID = short service instance ID (to postfix Container names)
205 self.instances[instance_uuid]["ssiid"] = self._instance_counter
206 self.instances[instance_uuid]["name"] = get_triple_id(self.nsd)
peusterm20e54452018-08-06 16:09:23 +0200207 self.instances[instance_uuid]["vnf_instances"] = list()
peusterm8246f982019-06-06 17:43:34 +0200208 self.instances[instance_uuid]["created_at"] = str(datetime.datetime.now())
peusterm8c6b10b2019-04-13 12:49:41 +0200209 # increase for next instance
210 self._instance_counter += 1
peusterm20e54452018-08-06 16:09:23 +0200211
peusterm9467ee52018-12-18 16:22:46 +0100212 # 3. start all vnfds that we have in the service
peusterm20e54452018-08-06 16:09:23 +0200213 for vnf_id in self.vnfds:
214 vnfd = self.vnfds[vnf_id]
peusterm9467ee52018-12-18 16:22:46 +0100215 # attention: returns a list of started deployment units
peusterm8c6b10b2019-04-13 12:49:41 +0200216 vnfis = self._start_vnfd(
217 vnfd, vnf_id, self.instances[instance_uuid]["ssiid"])
peusterm0c7afe62018-12-14 19:20:19 +0100218 # add list of VNFIs to total VNFI list
peusterm9467ee52018-12-18 16:22:46 +0100219 self.instances[instance_uuid]["vnf_instances"].extend(vnfis)
peusterm20e54452018-08-06 16:09:23 +0200220
peusterm9467ee52018-12-18 16:22:46 +0100221 # 4. Deploy E-Line, E-Tree and E-LAN links
peusterm20e54452018-08-06 16:09:23 +0200222 # Attention: Only done if ""forwarding_graphs" section in NSD exists,
223 # even if "forwarding_graphs" are not used directly.
peusterm8c6b10b2019-04-13 12:49:41 +0200224 # Attention2: Do a copy of *_subnets with list() is important here!
225 eline_fwd_links, elan_fwd_links = self._get_elines_and_elans()
226 # 5a. deploy E-Line links
227 GK.net.deployed_elines.extend(eline_fwd_links) # bookkeeping
228 self._connect_elines(eline_fwd_links, instance_uuid, list(self.eline_subnets))
229 # 5b. deploy E-Tree/E-LAN links
230 GK.net.deployed_elans.extend(elan_fwd_links) # bookkeeping
231 self._connect_elans(elan_fwd_links, instance_uuid, list(self.elan_subnets))
peusterm20e54452018-08-06 16:09:23 +0200232
233 # 6. run the emulator specific entrypoint scripts in the VNFIs of this
234 # service instance
235 self._trigger_emulator_start_scripts_in_vnfis(
236 self.instances[instance_uuid]["vnf_instances"])
peusterm17008d02018-12-19 09:58:17 +0100237 # done
peusterm8c6b10b2019-04-13 12:49:41 +0200238 LOG.info("Service '{}' started. Instance id: {} SSIID: {}"
239 .format(self.instances[instance_uuid]["name"],
240 instance_uuid,
241 self.instances[instance_uuid]["ssiid"]))
peusterm20e54452018-08-06 16:09:23 +0200242 return instance_uuid
243
244 def stop_service(self, instance_uuid):
245 """
246 This method stops a running service instance.
247 It iterates over all VNF instances, stopping them each
248 and removing them from their data center.
peusterm20e54452018-08-06 16:09:23 +0200249 :param instance_uuid: the uuid of the service instance to be stopped
250 """
251 LOG.info("Stopping service %r" % self.uuid)
252 # get relevant information
253 # instance_uuid = str(self.uuid.uuid4())
254 vnf_instances = self.instances[instance_uuid]["vnf_instances"]
peusterm20e54452018-08-06 16:09:23 +0200255 # trigger stop skripts in vnf instances and wait a few seconds for
256 # completion
257 self._trigger_emulator_stop_scripts_in_vnfis(vnf_instances)
258 time.sleep(VNF_STOP_WAIT_TIME)
peusterm17008d02018-12-19 09:58:17 +0100259 # stop all vnfs
peusterm20e54452018-08-06 16:09:23 +0200260 for v in vnf_instances:
261 self._stop_vnfi(v)
peusterm20e54452018-08-06 16:09:23 +0200262 # last step: remove the instance from the list of all instances
263 del self.instances[instance_uuid]
264
peusterm8c6b10b2019-04-13 12:49:41 +0200265 def _get_elines_and_elans(self):
266 """
267 Get the E-Line, E-LAN, E-Tree links from the NSD.
268 """
269 # Attention: Only done if ""forwarding_graphs" section in NSD exists,
270 # even if "forwarding_graphs" are not used directly.
271 eline_fwd_links = list()
272 elan_fwd_links = list()
273 if "virtual_links" in self.nsd and "forwarding_graphs" in self.nsd:
274 vlinks = self.nsd["virtual_links"]
275 # constituent virtual links are not checked
276 eline_fwd_links = [l for l in vlinks if (
277 l["connectivity_type"] == "E-Line")]
278 elan_fwd_links = [l for l in vlinks if (
279 l["connectivity_type"] == "E-LAN" or
280 l["connectivity_type"] == "E-Tree")] # Treat E-Tree as E-LAN
281 return eline_fwd_links, elan_fwd_links
282
peustermf6e811c2018-12-11 16:07:59 +0100283 def _get_resource_limits(self, deployment_unit):
284 """
285 Extract resource limits from deployment units.
286 """
287 # defaults
peusterm7da82502019-01-29 18:31:28 +0100288 cpu_list = None
peustermf6e811c2018-12-11 16:07:59 +0100289 cpu_period, cpu_quota = self._calculate_cpu_cfs_values(float(1.0))
peusterm7da82502019-01-29 18:31:28 +0100290 mem_limit = None
peustermf6e811c2018-12-11 16:07:59 +0100291 # update from descriptor
292 if "resource_requirements" in deployment_unit:
293 res_req = deployment_unit.get("resource_requirements")
peusterm7da82502019-01-29 18:31:28 +0100294 cpu_list = res_req.get("cpu").get("cpuset")
peustermf6e811c2018-12-11 16:07:59 +0100295 if cpu_list is None:
296 cpu_list = res_req.get("cpu").get("vcpus")
peusterm7da82502019-01-29 18:31:28 +0100297 if cpu_list is not None:
298 # attention: docker expects list as string w/o spaces:
299 cpu_list = str(cpu_list).replace(" ", "").strip()
300 cpu_bw = res_req.get("cpu").get("cpu_bw")
301 if cpu_bw is None:
302 cpu_bw = 1.0
peustermf6e811c2018-12-11 16:07:59 +0100303 cpu_period, cpu_quota = self._calculate_cpu_cfs_values(float(cpu_bw))
peusterm7da82502019-01-29 18:31:28 +0100304 mem_limit = res_req.get("memory").get("size")
peustermf6e811c2018-12-11 16:07:59 +0100305 mem_unit = str(res_req.get("memory").get("size_unit", "GB"))
peusterm7da82502019-01-29 18:31:28 +0100306 if mem_limit is not None:
307 mem_limit = int(mem_limit)
308 # to bytes
309 if "G" in mem_unit:
310 mem_limit = mem_limit * 1024 * 1024 * 1024
311 elif "M" in mem_unit:
312 mem_limit = mem_limit * 1024 * 1024
313 elif "K" in mem_unit:
314 mem_limit = mem_limit * 1024
peustermf6e811c2018-12-11 16:07:59 +0100315 return cpu_list, cpu_period, cpu_quota, mem_limit
316
peusterm8c6b10b2019-04-13 12:49:41 +0200317 def _start_vnfd(self, vnfd, vnf_id, ssiid, **kwargs):
peusterm20e54452018-08-06 16:09:23 +0200318 """
319 Start a single VNFD of this service
320 :param vnfd: vnfd descriptor dict
321 :param vnf_id: unique id of this vnf in the nsd
322 :return:
323 """
peusterm0c7afe62018-12-14 19:20:19 +0100324 vnfis = list()
peusterm20e54452018-08-06 16:09:23 +0200325 # the vnf_name refers to the container image to be deployed
326 vnf_name = vnfd.get("name")
peustermf6e811c2018-12-11 16:07:59 +0100327 # combine VDUs and CDUs
328 deployment_units = (vnfd.get("virtual_deployment_units", []) +
329 vnfd.get("cloudnative_deployment_units", []))
peusterm20e54452018-08-06 16:09:23 +0200330 # iterate over all deployment units within each VNFDs
peustermf6e811c2018-12-11 16:07:59 +0100331 for u in deployment_units:
peusterm0c7afe62018-12-14 19:20:19 +0100332 # 0. vnf_container_name = vnf_id.vdu_id
333 vnf_container_name = get_container_name(vnf_id, u.get("id"))
peusterm8c6b10b2019-04-13 12:49:41 +0200334 vnf_container_instance_name = get_container_name(vnf_id, u.get("id"), ssiid)
peusterm0c7afe62018-12-14 19:20:19 +0100335 # 1. get the name of the docker image to star
336 if vnf_container_name not in self.remote_docker_image_urls:
337 raise Exception("No image name for %r found. Abort." % vnf_container_name)
338 docker_image_name = self.remote_docker_image_urls.get(vnf_container_name)
339 # 2. select datacenter to start the VNF in
peusterm36d40332019-06-11 14:55:44 +0200340 target_dc = self._place(vnfd, vnf_id, u, ssiid)
peusterm0c7afe62018-12-14 19:20:19 +0100341 # 3. perform some checks to ensure we can start the container
342 assert(docker_image_name is not None)
peusterm20e54452018-08-06 16:09:23 +0200343 assert(target_dc is not None)
peusterm0c7afe62018-12-14 19:20:19 +0100344 if not self._check_docker_image_exists(docker_image_name):
345 raise Exception("Docker image {} not found. Abort."
346 .format(docker_image_name))
peusterm20e54452018-08-06 16:09:23 +0200347
peusterm0c7afe62018-12-14 19:20:19 +0100348 # 4. get the resource limits
peustermf6e811c2018-12-11 16:07:59 +0100349 cpu_list, cpu_period, cpu_quota, mem_limit = self._get_resource_limits(u)
peusterm20e54452018-08-06 16:09:23 +0200350
peusterm9467ee52018-12-18 16:22:46 +0100351 # get connection points defined for the DU
352 intfs = u.get("connection_points", [])
peusterm519e3cb2018-10-03 13:39:28 +0200353 # do some re-naming of fields to be compatible to containernet
354 for i in intfs:
355 if i.get("address"):
356 i["ip"] = i.get("address")
357
peusterm4995c532019-02-27 22:03:29 +0100358 # get ports and port_bindings from the port and publish fields of CNFD
359 # see: https://github.com/containernet/containernet/wiki/Exposing-and-mapping-network-ports
360 ports = list() # Containernet naming
361 port_bindings = dict()
362 for i in intfs:
363 if i.get("port"):
364 if not isinstance(i.get("port"), int):
peusterm8c6b10b2019-04-13 12:49:41 +0200365 LOG.info("Field 'port' is no int CP: {}".format(i))
peusterm4995c532019-02-27 22:03:29 +0100366 else:
367 ports.append(i.get("port"))
368 if i.get("publish"):
369 if not isinstance(i.get("publish"), dict):
peusterm8c6b10b2019-04-13 12:49:41 +0200370 LOG.info("Field 'publish' is no dict CP: {}".format(i))
peusterm4995c532019-02-27 22:03:29 +0100371 else:
372 port_bindings.update(i.get("publish"))
peusterm8c6b10b2019-04-13 12:49:41 +0200373 # update port mapping for cases where service is deployed > 1 times
374 port_bindings = update_port_mapping_multi_instance(ssiid, port_bindings)
peusterm4995c532019-02-27 22:03:29 +0100375 if len(ports) > 0:
peusterm8c6b10b2019-04-13 12:49:41 +0200376 LOG.info("{} exposes ports: {}".format(vnf_container_instance_name, ports))
peusterm4995c532019-02-27 22:03:29 +0100377 if len(port_bindings) > 0:
peusterm8c6b10b2019-04-13 12:49:41 +0200378 LOG.info("{} publishes ports: {}".format(vnf_container_instance_name, port_bindings))
peusterm4995c532019-02-27 22:03:29 +0100379
peusterm82afef62018-12-12 13:37:39 +0100380 # 5. collect additional information to start container
peusterm0c7afe62018-12-14 19:20:19 +0100381 volumes = list()
peusterm82afef62018-12-12 13:37:39 +0100382 cenv = dict()
383 # 5.1 inject descriptor based start/stop commands into env (overwrite)
384 VNFD_CMD_START = u.get("vm_cmd_start")
385 VNFD_CMD_STOP = u.get("vm_cmd_stop")
386 if VNFD_CMD_START and not VNFD_CMD_START == "None":
387 LOG.info("Found 'vm_cmd_start'='{}' in VNFD.".format(VNFD_CMD_START) +
388 " Overwriting SON_EMU_CMD.")
389 cenv["SON_EMU_CMD"] = VNFD_CMD_START
390 if VNFD_CMD_STOP and not VNFD_CMD_STOP == "None":
391 LOG.info("Found 'vm_cmd_start'='{}' in VNFD.".format(VNFD_CMD_STOP) +
392 " Overwriting SON_EMU_CMD_STOP.")
393 cenv["SON_EMU_CMD_STOP"] = VNFD_CMD_STOP
394
peusterm5a5f4052019-06-11 16:31:56 +0200395 # 5.2 inject per instance configurations based on envs
396 conf_envs = self._load_instance_conf_envs(vnf_container_instance_name)
397 cenv.update(conf_envs)
398
peusterm0c7afe62018-12-14 19:20:19 +0100399 # 6. Start the container
peusterm20e54452018-08-06 16:09:23 +0200400 LOG.info("Starting %r as %r in DC %r" %
peusterm36d40332019-06-11 14:55:44 +0200401 (vnf_name, vnf_container_instance_name, target_dc))
peusterm20e54452018-08-06 16:09:23 +0200402 LOG.debug("Interfaces for %r: %r" % (vnf_id, intfs))
peusterm0c7afe62018-12-14 19:20:19 +0100403 # start the container
peusterm20e54452018-08-06 16:09:23 +0200404 vnfi = target_dc.startCompute(
peusterm8c6b10b2019-04-13 12:49:41 +0200405 vnf_container_instance_name,
peusterm20e54452018-08-06 16:09:23 +0200406 network=intfs,
peusterm0c7afe62018-12-14 19:20:19 +0100407 image=docker_image_name,
peusterm20e54452018-08-06 16:09:23 +0200408 cpu_quota=cpu_quota,
409 cpu_period=cpu_period,
peusterm7da82502019-01-29 18:31:28 +0100410 cpuset_cpus=cpu_list,
peustermf6e811c2018-12-11 16:07:59 +0100411 mem_limit=mem_limit,
peusterm20e54452018-08-06 16:09:23 +0200412 volumes=volumes,
peusterm82afef62018-12-12 13:37:39 +0100413 properties=cenv, # environment
peusterm4995c532019-02-27 22:03:29 +0100414 ports=ports,
415 port_bindings=port_bindings,
peusterm8c6b10b2019-04-13 12:49:41 +0200416 # only publish if explicitly stated in descriptor
417 publish_all_ports=False,
peusterm20e54452018-08-06 16:09:23 +0200418 type=kwargs.get('type', 'docker'))
peusterm37911562018-10-18 15:03:55 +0200419 # add vnfd reference to vnfi
420 vnfi.vnfd = vnfd
peusterm0c7afe62018-12-14 19:20:19 +0100421 # add container name
422 vnfi.vnf_container_name = vnf_container_name
peusterm8c6b10b2019-04-13 12:49:41 +0200423 vnfi.vnf_container_instance_name = vnf_container_instance_name
424 vnfi.ssiid = ssiid
peusterm0c7afe62018-12-14 19:20:19 +0100425 # store vnfi
426 vnfis.append(vnfi)
427 return vnfis
peusterm20e54452018-08-06 16:09:23 +0200428
429 def _stop_vnfi(self, vnfi):
430 """
431 Stop a VNF instance.
peusterm20e54452018-08-06 16:09:23 +0200432 :param vnfi: vnf instance to be stopped
433 """
434 # Find the correct datacenter
435 status = vnfi.getStatus()
436 dc = vnfi.datacenter
peusterm20e54452018-08-06 16:09:23 +0200437 # stop the vnfi
438 LOG.info("Stopping the vnf instance contained in %r in DC %r" %
439 (status["name"], dc))
440 dc.stopCompute(status["name"])
441
442 def _get_vnf_instance(self, instance_uuid, vnf_id):
443 """
peusterm4995c532019-02-27 22:03:29 +0100444 Returns VNFI object for a given "vnf_id" or "vnf_container_name" taken from an NSD.
peusterm9467ee52018-12-18 16:22:46 +0100445 :return: single object
peusterm20e54452018-08-06 16:09:23 +0200446 """
peusterm20e54452018-08-06 16:09:23 +0200447 for vnfi in self.instances[instance_uuid]["vnf_instances"]:
peusterm9467ee52018-12-18 16:22:46 +0100448 if str(vnfi.name) == str(vnf_id):
peusterm20e54452018-08-06 16:09:23 +0200449 return vnfi
peusterm9467ee52018-12-18 16:22:46 +0100450 LOG.warning("No container with name: {0} found.".format(vnf_id))
451 return None
452
453 def _get_vnf_instance_units(self, instance_uuid, vnf_id):
454 """
455 Returns a list of VNFI objects (all deployment units) for a given
456 "vnf_id" taken from an NSD.
457 :return: list
458 """
peusterm061c0cb2019-02-18 21:37:51 +0100459 if vnf_id is None:
460 return None
peusterm9467ee52018-12-18 16:22:46 +0100461 r = list()
462 for vnfi in self.instances[instance_uuid]["vnf_instances"]:
463 if vnf_id in vnfi.name:
464 r.append(vnfi)
465 if len(r) > 0:
466 LOG.debug("Found units: {} for vnf_id: {}"
467 .format([i.name for i in r], vnf_id))
468 return r
469 LOG.warning("No container(s) with name: {0} found.".format(vnf_id))
peusterm20e54452018-08-06 16:09:23 +0200470 return None
471
472 @staticmethod
473 def _vnf_reconfigure_network(vnfi, if_name, net_str=None, new_name=None):
474 """
475 Reconfigure the network configuration of a specific interface
476 of a running container.
477 :param vnfi: container instance
478 :param if_name: interface name
479 :param net_str: network configuration string, e.g., 1.2.3.4/24
480 :return:
481 """
peusterm20e54452018-08-06 16:09:23 +0200482 # assign new ip address
483 if net_str is not None:
484 intf = vnfi.intf(intf=if_name)
485 if intf is not None:
486 intf.setIP(net_str)
487 LOG.debug("Reconfigured network of %s:%s to %r" %
488 (vnfi.name, if_name, net_str))
489 else:
490 LOG.warning("Interface not found: %s:%s. Network reconfiguration skipped." % (
491 vnfi.name, if_name))
492
493 if new_name is not None:
494 vnfi.cmd('ip link set', if_name, 'down')
495 vnfi.cmd('ip link set', if_name, 'name', new_name)
496 vnfi.cmd('ip link set', new_name, 'up')
497 LOG.debug("Reconfigured interface name of %s:%s to %s" %
498 (vnfi.name, if_name, new_name))
499
500 def _trigger_emulator_start_scripts_in_vnfis(self, vnfi_list):
501 for vnfi in vnfi_list:
502 config = vnfi.dcinfo.get("Config", dict())
503 env = config.get("Env", list())
504 for env_var in env:
505 var, cmd = map(str.strip, map(str, env_var.split('=', 1)))
peusterm82afef62018-12-12 13:37:39 +0100506 if var == "SON_EMU_CMD" or var == "VIM_EMU_CMD":
507 LOG.info("Executing script in '{}': {}={}"
508 .format(vnfi.name, var, cmd))
peusterm20e54452018-08-06 16:09:23 +0200509 # execute command in new thread to ensure that GK is not
510 # blocked by VNF
511 t = threading.Thread(target=vnfi.cmdPrint, args=(cmd,))
512 t.daemon = True
513 t.start()
peusterm82afef62018-12-12 13:37:39 +0100514 break # only execute one command
peusterm20e54452018-08-06 16:09:23 +0200515
516 def _trigger_emulator_stop_scripts_in_vnfis(self, vnfi_list):
517 for vnfi in vnfi_list:
518 config = vnfi.dcinfo.get("Config", dict())
519 env = config.get("Env", list())
520 for env_var in env:
521 var, cmd = map(str.strip, map(str, env_var.split('=', 1)))
peusterm82afef62018-12-12 13:37:39 +0100522 if var == "SON_EMU_CMD_STOP" or var == "VIM_EMU_CMD_STOP":
523 LOG.info("Executing script in '{}': {}={}"
524 .format(vnfi.name, var, cmd))
peusterm20e54452018-08-06 16:09:23 +0200525 # execute command in new thread to ensure that GK is not
526 # blocked by VNF
527 t = threading.Thread(target=vnfi.cmdPrint, args=(cmd,))
528 t.daemon = True
529 t.start()
peusterm82afef62018-12-12 13:37:39 +0100530 break # only execute one command
peusterm20e54452018-08-06 16:09:23 +0200531
peusterm5a5f4052019-06-11 16:31:56 +0200532 def _load_instance_conf_envs(self, cname):
533 """
534 Try to load an instance-specific env file. If not found,
535 just return an empty dict.
536 """
537 if PER_INSTANCE_ENV_CONFIGURATION_FOLDER is None:
538 return dict()
539 try:
540 path = os.path.expanduser(PER_INSTANCE_ENV_CONFIGURATION_FOLDER)
541 path = os.path.join(path, "{}.env.yml".format(cname))
542 res = load_yaml(path)
543 LOG.info("Loaded instance-specific env file for '{}': {}"
544 .format(cname, res))
545 return res
546 except BaseException as ex:
547 LOG.info("No instance-specific env file found for: {}"
548 .format(cname))
549 del ex
550 return dict()
551
peusterm20e54452018-08-06 16:09:23 +0200552 def _unpack_service_package(self):
553 """
554 unzip *.son file and store contents in CATALOG_FOLDER/services/<service_uuid>/
555 """
556 LOG.info("Unzipping: %r" % self.package_file_path)
557 with zipfile.ZipFile(self.package_file_path, "r") as z:
558 z.extractall(self.package_content_path)
559
560 def _load_package_descriptor(self):
561 """
562 Load the main package descriptor YAML and keep it as dict.
563 :return:
564 """
565 self.manifest = load_yaml(
566 os.path.join(
567 self.package_content_path, "TOSCA-Metadata/NAPD.yaml"))
568
569 def _load_nsd(self):
570 """
571 Load the entry NSD YAML and keep it as dict.
572 :return:
573 """
574 if "package_content" in self.manifest:
575 nsd_path = None
576 for f in self.manifest.get("package_content"):
577 if f.get("content-type") == "application/vnd.5gtango.nsd":
578 nsd_path = os.path.join(
579 self.package_content_path,
580 make_relative_path(f.get("source")))
581 break # always use the first NSD for now
582 if nsd_path is None:
583 raise OnBoardingException("No NSD with type 'application/vnd.5gtango.nsd' found.")
584 self.nsd = load_yaml(nsd_path)
585 GK.net.deployed_nsds.append(self.nsd) # TODO this seems strange (remove?)
peusterm20e54452018-08-06 16:09:23 +0200586 LOG.debug("Loaded NSD: %r" % self.nsd.get("name"))
587 else:
588 raise OnBoardingException(
589 "No 'package_content' section in package manifest:\n{}"
590 .format(self.manifest))
591
592 def _load_vnfd(self):
593 """
594 Load all VNFD YAML files referenced in MANIFEST.MF and keep them in dict.
595 :return:
596 """
peusterm20e54452018-08-06 16:09:23 +0200597 # first make a list of all the vnfds in the package
598 vnfd_set = dict()
599 if "package_content" in self.manifest:
600 for pc in self.manifest.get("package_content"):
601 if pc.get(
602 "content-type") == "application/vnd.5gtango.vnfd":
603 vnfd_path = os.path.join(
604 self.package_content_path,
605 make_relative_path(pc.get("source")))
606 vnfd = load_yaml(vnfd_path)
607 vnfd_set[vnfd.get("name")] = vnfd
608 if len(vnfd_set) < 1:
609 raise OnBoardingException("No VNFDs found.")
610 # then link each vnf_id in the nsd to its vnfd
peusterm17008d02018-12-19 09:58:17 +0100611 for v in self.nsd.get("network_functions"):
612 if v.get("vnf_name") in vnfd_set:
613 self.vnfds[v.get("vnf_id")] = vnfd_set[v.get("vnf_name")]
614 LOG.debug("Loaded VNFD: {0} id: {1}"
615 .format(v.get("vnf_name"), v.get("vnf_id")))
peusterm20e54452018-08-06 16:09:23 +0200616
peusterm8c6b10b2019-04-13 12:49:41 +0200617 def _connect_elines(self, eline_fwd_links, instance_uuid, subnets):
peusterm20e54452018-08-06 16:09:23 +0200618 """
619 Connect all E-LINE links in the NSD
peusterm9467ee52018-12-18 16:22:46 +0100620 Attention: This method DOES NOT support multi V/CDU VNFs!
peusterm20e54452018-08-06 16:09:23 +0200621 :param eline_fwd_links: list of E-LINE links in the NSD
622 :param: instance_uuid of the service
peusterm8c6b10b2019-04-13 12:49:41 +0200623 :param: subnets list of subnets to be used
peusterm20e54452018-08-06 16:09:23 +0200624 :return:
625 """
626 # cookie is used as identifier for the flowrules installed by the dummygatekeeper
627 # eg. different services get a unique cookie for their flowrules
628 cookie = 1
629 for link in eline_fwd_links:
peusterm37911562018-10-18 15:03:55 +0200630 LOG.info("Found E-Line: {}".format(link))
peusterm17008d02018-12-19 09:58:17 +0100631 src_id, src_if_name = parse_interface(
peusterm20e54452018-08-06 16:09:23 +0200632 link["connection_points_reference"][0])
peusterm17008d02018-12-19 09:58:17 +0100633 dst_id, dst_if_name = parse_interface(
peusterm20e54452018-08-06 16:09:23 +0200634 link["connection_points_reference"][1])
peusterm061c0cb2019-02-18 21:37:51 +0100635 LOG.info("Searching C/VDU for E-Line: src={}, src_if={}, dst={}, dst_if={}"
636 .format(src_id, src_if_name, dst_id, dst_if_name))
637 # handle C/VDUs (ugly hack, only one V/CDU per VNF for now)
638 src_units = self._get_vnf_instance_units(instance_uuid, src_id)
639 dst_units = self._get_vnf_instance_units(instance_uuid, dst_id)
640 if src_units is None or dst_units is None:
641 LOG.info("No VNF-VNF link. Skipping: src={}, src_if={}, dst={}, dst_if={}"
642 .format(src_id, src_if_name, dst_id, dst_if_name))
643 return
644 # we only support VNFs with one V/CDU right now
645 if len(src_units) != 1 or len(dst_units) != 1:
646 raise BaseException("LLCM does not support E-LINES for multi V/CDU VNFs.")
647 # get the full name from that C/VDU and use it as src_id and dst_id
648 src_id = src_units[0].name
649 dst_id = dst_units[0].name
650 # from here we have all info we need
651 LOG.info("Creating E-Line for C/VDU: src={}, src_if={}, dst={}, dst_if={}"
652 .format(src_id, src_if_name, dst_id, dst_if_name))
peusterm17008d02018-12-19 09:58:17 +0100653 # get involved vnfis
peusterm061c0cb2019-02-18 21:37:51 +0100654 src_vnfi = src_units[0]
655 dst_vnfi = dst_units[0]
656 # proceed with chaining setup
657 setChaining = False
peusterm17008d02018-12-19 09:58:17 +0100658 if src_vnfi is not None and dst_vnfi is not None:
659 setChaining = True
660 # re-configure the VNFs IP assignment and ensure that a new
661 # subnet is used for each E-Link
peusterm8c6b10b2019-04-13 12:49:41 +0200662 eline_net = subnets.pop(0)
peusterm17008d02018-12-19 09:58:17 +0100663 ip1 = "{0}/{1}".format(str(eline_net[1]),
664 eline_net.prefixlen)
665 ip2 = "{0}/{1}".format(str(eline_net[2]),
666 eline_net.prefixlen)
peusterm4995c532019-02-27 22:03:29 +0100667 # check if VNFs have fixed IPs (ip/address field in VNFDs)
668 if (self._get_vnfd_cp_from_vnfi(
669 src_vnfi, src_if_name).get("ip") is None and
670 self._get_vnfd_cp_from_vnfi(
671 src_vnfi, src_if_name).get("address") is None):
peusterm17008d02018-12-19 09:58:17 +0100672 self._vnf_reconfigure_network(src_vnfi, src_if_name, ip1)
peusterm4995c532019-02-27 22:03:29 +0100673 # check if VNFs have fixed IPs (ip field in VNFDs)
674 if (self._get_vnfd_cp_from_vnfi(
675 dst_vnfi, dst_if_name).get("ip") is None and
676 self._get_vnfd_cp_from_vnfi(
677 dst_vnfi, dst_if_name).get("address") is None):
peusterm17008d02018-12-19 09:58:17 +0100678 self._vnf_reconfigure_network(dst_vnfi, dst_if_name, ip2)
679 # set the chaining
peusterm20e54452018-08-06 16:09:23 +0200680 if setChaining:
681 GK.net.setChain(
682 src_id, dst_id,
683 vnf_src_interface=src_if_name, vnf_dst_interface=dst_if_name,
684 bidirectional=BIDIRECTIONAL_CHAIN, cmd="add-flow", cookie=cookie, priority=10)
peusterm37911562018-10-18 15:03:55 +0200685
686 def _get_vnfd_cp_from_vnfi(self, vnfi, ifname):
687 """
688 Gets the connection point data structure from the VNFD
689 of the given VNFI using ifname.
690 """
691 if vnfi.vnfd is None:
692 return {}
693 cps = vnfi.vnfd.get("connection_points")
694 for cp in cps:
695 if cp.get("id") == ifname:
696 return cp
peusterm20e54452018-08-06 16:09:23 +0200697
peusterm8c6b10b2019-04-13 12:49:41 +0200698 def _connect_elans(self, elan_fwd_links, instance_uuid, subnets):
peusterm20e54452018-08-06 16:09:23 +0200699 """
peusterm9467ee52018-12-18 16:22:46 +0100700 Connect all E-LAN/E-Tree links in the NSD
701 This method supports multi-V/CDU VNFs if the connection
702 point names of the DUs are the same as the ones in the NSD.
peusterm20e54452018-08-06 16:09:23 +0200703 :param elan_fwd_links: list of E-LAN links in the NSD
704 :param: instance_uuid of the service
peusterm8c6b10b2019-04-13 12:49:41 +0200705 :param: subnets list of subnets to be used
peusterm20e54452018-08-06 16:09:23 +0200706 :return:
707 """
708 for link in elan_fwd_links:
peusterm9467ee52018-12-18 16:22:46 +0100709 # a new E-LAN/E-Tree
peusterm20e54452018-08-06 16:09:23 +0200710 elan_vnf_list = []
peusterm8c6b10b2019-04-13 12:49:41 +0200711 lan_net = subnets.pop(0)
peusterm9467ee52018-12-18 16:22:46 +0100712 lan_hosts = list(lan_net.hosts())
peusterm20e54452018-08-06 16:09:23 +0200713
peusterm9467ee52018-12-18 16:22:46 +0100714 # generate lan ip address for all interfaces (of all involved (V/CDUs))
peusterm20e54452018-08-06 16:09:23 +0200715 for intf in link["connection_points_reference"]:
peusterm17008d02018-12-19 09:58:17 +0100716 vnf_id, intf_name = parse_interface(intf)
peusterm9467ee52018-12-18 16:22:46 +0100717 if vnf_id is None:
718 continue # skip references to NS connection points
719 units = self._get_vnf_instance_units(instance_uuid, vnf_id)
720 if units is None:
721 continue # skip if no deployment unit is present
722 # iterate over all involved deployment units
723 for uvnfi in units:
724 # Attention: we apply a simplification for multi DU VNFs here:
725 # the connection points of all involved DUs have to have the same
726 # name as the connection points of the surrounding VNF to be mapped.
727 # This is because we do not consider links specified in the VNFds
728 container_name = uvnfi.name
729 ip_address = "{0}/{1}".format(str(lan_hosts.pop(0)),
730 lan_net.prefixlen)
731 LOG.debug(
732 "Setting up E-LAN/E-Tree interface. (%s:%s) -> %s" % (
733 container_name, intf_name, ip_address))
734 # re-configure the VNFs IP assignment and ensure that a new subnet is used for each E-LAN
735 # E-LAN relies on the learning switch capability of Ryu which has to be turned on in the topology
736 # (DCNetwork(controller=RemoteController, enable_learning=True)), so no explicit chaining is
737 # necessary.
738 vnfi = self._get_vnf_instance(instance_uuid, container_name)
739 if vnfi is not None:
740 self._vnf_reconfigure_network(vnfi, intf_name, ip_address)
741 # add this vnf and interface to the E-LAN for tagging
742 elan_vnf_list.append(
743 {'name': container_name, 'interface': intf_name})
peusterm20e54452018-08-06 16:09:23 +0200744 # install the VLAN tags for this E-LAN
745 GK.net.setLAN(elan_vnf_list)
746
747 def _load_docker_files(self):
748 """
749 Get all paths to Dockerfiles from VNFDs and store them in dict.
750 :return:
751 """
peusterm0c7afe62018-12-14 19:20:19 +0100752 for vnf_id, v in self.vnfds.iteritems():
peustermf6e811c2018-12-11 16:07:59 +0100753 for vu in v.get("virtual_deployment_units", []):
peusterm0c7afe62018-12-14 19:20:19 +0100754 vnf_container_name = get_container_name(vnf_id, vu.get("id"))
peusterm20e54452018-08-06 16:09:23 +0200755 if vu.get("vm_image_format") == "docker":
756 vm_image = vu.get("vm_image")
757 docker_path = os.path.join(
758 self.package_content_path,
759 make_relative_path(vm_image))
peusterm0c7afe62018-12-14 19:20:19 +0100760 self.local_docker_files[vnf_container_name] = docker_path
761 LOG.debug("Found Dockerfile (%r): %r" % (vnf_container_name, docker_path))
peustermf6e811c2018-12-11 16:07:59 +0100762 for cu in v.get("cloudnative_deployment_units", []):
peusterm0c7afe62018-12-14 19:20:19 +0100763 vnf_container_name = get_container_name(vnf_id, cu.get("id"))
peustermf6e811c2018-12-11 16:07:59 +0100764 image = cu.get("image")
765 docker_path = os.path.join(
766 self.package_content_path,
767 make_relative_path(image))
peusterm0c7afe62018-12-14 19:20:19 +0100768 self.local_docker_files[vnf_container_name] = docker_path
769 LOG.debug("Found Dockerfile (%r): %r" % (vnf_container_name, docker_path))
peusterm20e54452018-08-06 16:09:23 +0200770
771 def _load_docker_urls(self):
772 """
773 Get all URLs to pre-build docker images in some repo.
774 :return:
775 """
peusterm0c7afe62018-12-14 19:20:19 +0100776 for vnf_id, v in self.vnfds.iteritems():
peustermf6e811c2018-12-11 16:07:59 +0100777 for vu in v.get("virtual_deployment_units", []):
peusterm0c7afe62018-12-14 19:20:19 +0100778 vnf_container_name = get_container_name(vnf_id, vu.get("id"))
peusterm20e54452018-08-06 16:09:23 +0200779 if vu.get("vm_image_format") == "docker":
780 url = vu.get("vm_image")
781 if url is not None:
782 url = url.replace("http://", "")
peusterm0c7afe62018-12-14 19:20:19 +0100783 self.remote_docker_image_urls[vnf_container_name] = url
peusterm20e54452018-08-06 16:09:23 +0200784 LOG.debug("Found Docker image URL (%r): %r" %
peusterm0c7afe62018-12-14 19:20:19 +0100785 (vnf_container_name,
786 self.remote_docker_image_urls[vnf_container_name]))
peustermf6e811c2018-12-11 16:07:59 +0100787 for cu in v.get("cloudnative_deployment_units", []):
peusterm0c7afe62018-12-14 19:20:19 +0100788 vnf_container_name = get_container_name(vnf_id, cu.get("id"))
peustermf6e811c2018-12-11 16:07:59 +0100789 url = cu.get("image")
790 if url is not None:
791 url = url.replace("http://", "")
peusterm0c7afe62018-12-14 19:20:19 +0100792 self.remote_docker_image_urls[vnf_container_name] = url
peustermf6e811c2018-12-11 16:07:59 +0100793 LOG.debug("Found Docker image URL (%r): %r" %
peusterm0c7afe62018-12-14 19:20:19 +0100794 (vnf_container_name,
795 self.remote_docker_image_urls[vnf_container_name]))
peusterm20e54452018-08-06 16:09:23 +0200796
797 def _build_images_from_dockerfiles(self):
798 """
799 Build Docker images for each local Dockerfile found in the package: self.local_docker_files
800 """
801 if GK_STANDALONE_MODE:
802 return # do not build anything in standalone mode
803 dc = DockerClient()
804 LOG.info("Building %d Docker images (this may take several minutes) ..." % len(
805 self.local_docker_files))
806 for k, v in self.local_docker_files.iteritems():
807 for line in dc.build(path=v.replace(
808 "Dockerfile", ""), tag=k, rm=False, nocache=False):
809 LOG.debug("DOCKER BUILD: %s" % line)
810 LOG.info("Docker image created: %s" % k)
811
812 def _pull_predefined_dockerimages(self):
813 """
814 If the package contains URLs to pre-build Docker images, we download them with this method.
815 """
816 dc = DockerClient()
817 for url in self.remote_docker_image_urls.itervalues():
818 # only pull if not present (speedup for development)
819 if not FORCE_PULL:
820 if len(dc.images.list(name=url)) > 0:
821 LOG.debug("Image %r present. Skipping pull." % url)
822 continue
823 LOG.info("Pulling image: %r" % url)
824 # this seems to fail with latest docker api version 2.0.2
825 # dc.images.pull(url,
826 # insecure_registry=True)
827 # using docker cli instead
828 cmd = ["docker",
829 "pull",
830 url,
831 ]
832 Popen(cmd).wait()
833
834 def _check_docker_image_exists(self, image_name):
835 """
836 Query the docker service and check if the given image exists
837 :param image_name: name of the docker image
838 :return:
839 """
840 return len(DockerClient().images.list(name=image_name)) > 0
841
peusterm36d40332019-06-11 14:55:44 +0200842 def _place(self, vnfd, vnfid, vdu, ssiid):
peusterm20e54452018-08-06 16:09:23 +0200843 """
peusterm36d40332019-06-11 14:55:44 +0200844 Do placement. Return the name of the DC to place
845 the given VDU.
peusterm20e54452018-08-06 16:09:23 +0200846 """
847 assert(len(self.vnfds) > 0)
848 assert(len(GK.dcs) > 0)
peusterm36d40332019-06-11 14:55:44 +0200849 if PLACEMENT_ALGORITHM_OBJ is None:
850 LOG.error("No placement algorithm given. Using FirstDcPlacement!")
851 p = FirstDcPlacement()
852 else:
853 p = PLACEMENT_ALGORITHM_OBJ
854 cname = get_container_name(vnfid, vdu.get("id"), ssiid)
855 rdc = p.place(GK.dcs, vnfd, vnfid, vdu, ssiid, cname)
856 LOG.info("Placement: '{}' --> '{}'".format(cname, rdc))
857 return rdc
peusterm20e54452018-08-06 16:09:23 +0200858
859 def _calculate_cpu_cfs_values(self, cpu_time_percentage):
860 """
861 Calculate cpu period and quota for CFS
862 :param cpu_time_percentage: percentage of overall CPU to be used
863 :return: cpu_period, cpu_quota
864 """
865 if cpu_time_percentage is None:
866 return -1, -1
867 if cpu_time_percentage < 0:
868 return -1, -1
869 # (see: https://www.kernel.org/doc/Documentation/scheduler/sched-bwc.txt)
870 # Attention minimum cpu_quota is 1ms (micro)
871 cpu_period = 1000000 # lets consider a fixed period of 1000000 microseconds for now
872 LOG.debug("cpu_period is %r, cpu_percentage is %r" %
873 (cpu_period, cpu_time_percentage))
874 # calculate the fraction of cpu time for this container
875 cpu_quota = cpu_period * cpu_time_percentage
876 # ATTENTION >= 1000 to avoid a invalid argument system error ... no
877 # idea why
878 if cpu_quota < 1000:
879 LOG.debug("cpu_quota before correcting: %r" % cpu_quota)
880 cpu_quota = 1000
881 LOG.warning("Increased CPU quota to avoid system error.")
882 LOG.debug("Calculated: cpu_period=%f / cpu_quota=%f" %
883 (cpu_period, cpu_quota))
884 return int(cpu_period), int(cpu_quota)
885
peusterm20e54452018-08-06 16:09:23 +0200886
887"""
888Some (simple) placement algorithms
889"""
890
891
892class FirstDcPlacement(object):
893 """
894 Placement: Always use one and the same data center from the GK.dcs dict.
895 """
896
peusterm36d40332019-06-11 14:55:44 +0200897 def place(self, dcs, vnfd, vnfid, vdu, ssiid, cname):
898 return list(dcs.itervalues())[0]
peusterm20e54452018-08-06 16:09:23 +0200899
900
901class RoundRobinDcPlacement(object):
902 """
903 Placement: Distribute VNFs across all available DCs in a round robin fashion.
904 """
905
peusterm36d40332019-06-11 14:55:44 +0200906 def __init__(self):
907 self.count = 0
908
909 def place(self, dcs, vnfd, vnfid, vdu, ssiid, cname):
peusterm20e54452018-08-06 16:09:23 +0200910 dcs_list = list(dcs.itervalues())
peusterm36d40332019-06-11 14:55:44 +0200911 rdc = dcs_list[self.count % len(dcs_list)]
912 self.count += 1 # inc. count to use next DC
913 return rdc
914
915
916class StaticConfigPlacement(object):
917 """
918 Placement: Fixed assignment based on config file.
919 """
920
921 def __init__(self, path=None):
922 if path is None:
923 path = "static_placement.yml"
924 path = os.path.expanduser(path)
925 self.static_placement = dict()
926 try:
927 self.static_placement = load_yaml(path)
928 except BaseException as ex:
929 LOG.error(ex)
930 LOG.error("Couldn't load placement from {}"
931 .format(path))
932 LOG.info("Loaded static placement: {}"
933 .format(self.static_placement))
934
935 def place(self, dcs, vnfd, vnfid, vdu, ssiid, cname):
936 # check for container name entry
937 if cname not in self.static_placement:
938 LOG.error("Coudn't find {} in placement".format(cname))
939 LOG.error("Using first DC as fallback!")
940 return list(dcs.itervalues())[0]
941 # lookup
942 candidate_dc = self.static_placement.get(cname)
943 # check if DC exsits
944 if candidate_dc not in dcs:
945 LOG.error("Coudn't find DC {}".format(candidate_dc))
946 LOG.error("Using first DC as fallback!")
947 return list(dcs.itervalues())[0]
948 # return correct DC
949 return dcs.get(candidate_dc)
peusterm20e54452018-08-06 16:09:23 +0200950
951
peusterm20e54452018-08-06 16:09:23 +0200952"""
953Resource definitions and API endpoints
954"""
955
956
957class Packages(fr.Resource):
958
959 def post(self):
960 """
961 Upload a *.son service package to the dummy gatekeeper.
962
963 We expect request with a *.son file and store it in UPLOAD_FOLDER
964 :return: UUID
965 """
966 try:
967 # get file contents
968 LOG.info("POST /packages called")
969 # lets search for the package in the request
970 is_file_object = False # make API more robust: file can be in data or in files field
971 if "package" in request.files:
972 son_file = request.files["package"]
973 is_file_object = True
974 elif len(request.data) > 0:
975 son_file = request.data
976 else:
977 return {"service_uuid": None, "size": 0, "sha1": None,
978 "error": "upload failed. file not found."}, 500
979 # generate a uuid to reference this package
980 service_uuid = str(uuid.uuid4())
981 file_hash = hashlib.sha1(str(son_file)).hexdigest()
982 # ensure that upload folder exists
983 ensure_dir(UPLOAD_FOLDER)
peusterm519e3cb2018-10-03 13:39:28 +0200984 upload_path = os.path.join(UPLOAD_FOLDER, "%s.tgo" % service_uuid)
peusterm20e54452018-08-06 16:09:23 +0200985 # store *.son file to disk
986 if is_file_object:
987 son_file.save(upload_path)
988 else:
989 with open(upload_path, 'wb') as f:
990 f.write(son_file)
991 size = os.path.getsize(upload_path)
992
993 # first stop and delete any other running services
994 if AUTO_DELETE:
995 service_list = copy.copy(GK.services)
996 for service_uuid in service_list:
997 instances_list = copy.copy(
998 GK.services[service_uuid].instances)
999 for instance_uuid in instances_list:
1000 # valid service and instance UUID, stop service
1001 GK.services.get(service_uuid).stop_service(
1002 instance_uuid)
1003 LOG.info("service instance with uuid %r stopped." %
1004 instance_uuid)
1005
1006 # create a service object and register it
1007 s = Service(service_uuid, file_hash, upload_path)
1008 GK.register_service_package(service_uuid, s)
1009
1010 # automatically deploy the service
1011 if AUTO_DEPLOY:
1012 # ok, we have a service uuid, lets start the service
1013 reset_subnets()
1014 GK.services.get(service_uuid).start_service()
1015
1016 # generate the JSON result
1017 return {"service_uuid": service_uuid, "size": size,
1018 "sha1": file_hash, "error": None}, 201
1019 except BaseException:
1020 LOG.exception("Service package upload failed:")
1021 return {"service_uuid": None, "size": 0,
1022 "sha1": None, "error": "upload failed"}, 500
1023
1024 def get(self):
1025 """
peusterm8246f982019-06-06 17:43:34 +02001026 Return a list of package descriptor headers.
1027 Fakes the behavior of 5GTANGO's GK API to be
1028 compatible with tng-cli.
1029 :return: list
peusterm20e54452018-08-06 16:09:23 +02001030 """
1031 LOG.info("GET /packages")
peusterm8246f982019-06-06 17:43:34 +02001032 result = list()
1033 for suuid, sobj in GK.services.iteritems():
1034 pkg = dict()
1035 pkg["pd"] = dict()
1036 pkg["uuid"] = suuid
1037 pkg["pd"]["name"] = sobj.manifest.get("name")
1038 pkg["pd"]["version"] = sobj.manifest.get("version")
1039 pkg["created_at"] = sobj.created_at
1040 result.append(pkg)
1041 return result, 200
1042
1043
1044class Services(fr.Resource):
1045
1046 def get(self):
1047 """
1048 Return a list of services.
1049 Fakes the behavior of 5GTANGO's GK API to be
1050 compatible with tng-cli.
1051 :return: list
1052 """
1053 LOG.info("GET /services")
1054 result = list()
1055 for suuid, sobj in GK.services.iteritems():
1056 service = dict()
1057 service["nsd"] = dict()
1058 service["uuid"] = suuid
1059 service["nsd"]["name"] = sobj.nsd.get("name")
1060 service["nsd"]["version"] = sobj.nsd.get("version")
1061 service["created_at"] = sobj.created_at
1062 result.append(service)
1063 return result, 200
peusterm20e54452018-08-06 16:09:23 +02001064
1065
1066class Instantiations(fr.Resource):
1067
1068 def post(self):
1069 """
1070 Instantiate a service specified by its UUID.
1071 Will return a new UUID to identify the running service instance.
1072 :return: UUID
1073 """
1074 LOG.info("POST /instantiations (or /requests) called")
1075 # try to extract the service uuid from the request
1076 json_data = request.get_json(force=True)
1077 service_uuid = json_data.get("service_uuid")
peusterm61ba1292018-12-19 13:58:12 +01001078 service_name = json_data.get("service_name")
peusterm8246f982019-06-06 17:43:34 +02001079 if service_name is None:
1080 # lets be fuzzy
1081 service_name = service_uuid
peusterm61ba1292018-12-19 13:58:12 +01001082 # first try to find by service_name
1083 if service_name is not None:
1084 for s_uuid, s in GK.services.iteritems():
1085 if s.manifest.get("name") == service_name:
peusterm8c6b10b2019-04-13 12:49:41 +02001086 LOG.info("Searched for: {}. Found service w. UUID: {}"
peusterm61ba1292018-12-19 13:58:12 +01001087 .format(service_name, s_uuid))
1088 service_uuid = s_uuid
peusterm20e54452018-08-06 16:09:23 +02001089 # lets be a bit fuzzy here to make testing easier
1090 if (service_uuid is None or service_uuid ==
1091 "latest") and len(GK.services) > 0:
1092 # if we don't get a service uuid, we simple start the first service
1093 # in the list
1094 service_uuid = list(GK.services.iterkeys())[0]
1095 if service_uuid in GK.services:
1096 # ok, we have a service uuid, lets start the service
1097 service_instance_uuid = GK.services.get(
1098 service_uuid).start_service()
peusterm8246f982019-06-06 17:43:34 +02001099 # multiple ID fields to be compatible with tng-bench and tng-cli
1100 return ({"service_instance_uuid": service_instance_uuid,
1101 "id": service_instance_uuid}, 201)
1102 LOG.error("Service not found: {}/{}".format(service_uuid, service_name))
peusterm20e54452018-08-06 16:09:23 +02001103 return "Service not found", 404
1104
1105 def get(self):
1106 """
1107 Returns a list of UUIDs containing all running services.
1108 :return: dict / list
1109 """
peusterm8246f982019-06-06 17:43:34 +02001110 LOG.info("GET /instantiations or /api/v3/records/services")
1111 # return {"service_instantiations_list": [
1112 # list(s.instances.iterkeys()) for s in GK.services.itervalues()]}
1113 result = list()
1114 for suuid, sobj in GK.services.iteritems():
1115 for iuuid, iobj in sobj.instances.iteritems():
1116 inst = dict()
1117 inst["uuid"] = iobj.get("uuid")
1118 inst["instance_name"] = "{}-inst.{}".format(
1119 iobj.get("name"), iobj.get("ssiid"))
1120 inst["status"] = "running"
1121 inst["created_at"] = iobj.get("created_at")
1122 result.append(inst)
1123 return result, 200
peusterm20e54452018-08-06 16:09:23 +02001124
1125 def delete(self):
1126 """
1127 Stops a running service specified by its service and instance UUID.
1128 """
1129 # try to extract the service and instance UUID from the request
1130 json_data = request.get_json(force=True)
peustermc6aec172019-01-10 15:21:26 +01001131 service_uuid_input = json_data.get("service_uuid")
1132 instance_uuid_input = json_data.get("service_instance_uuid")
1133 if len(GK.services) < 1:
1134 return "No service on-boarded.", 404
peusterm20e54452018-08-06 16:09:23 +02001135 # try to be fuzzy
peustermc6aec172019-01-10 15:21:26 +01001136 if service_uuid_input is None:
1137 # if we don't get a service uuid we stop all services
1138 service_uuid_list = list(GK.services.iterkeys())
1139 LOG.info("No service_uuid given, stopping all.")
1140 else:
1141 service_uuid_list = [service_uuid_input]
1142 # for each service
1143 for service_uuid in service_uuid_list:
1144 if instance_uuid_input is None:
1145 instance_uuid_list = list(
1146 GK.services[service_uuid].instances.iterkeys())
1147 else:
1148 instance_uuid_list = [instance_uuid_input]
1149 # for all service instances
1150 for instance_uuid in instance_uuid_list:
1151 if (service_uuid in GK.services and
1152 instance_uuid in GK.services[service_uuid].instances):
1153 # valid service and instance UUID, stop service
1154 GK.services.get(service_uuid).stop_service(instance_uuid)
1155 LOG.info("Service instance with uuid %r stopped." % instance_uuid)
1156 return "Service(s) stopped.", 200
peusterm20e54452018-08-06 16:09:23 +02001157
1158
1159class Exit(fr.Resource):
1160
1161 def put(self):
1162 """
1163 Stop the running Containernet instance regardless of data transmitted
1164 """
1165 list(GK.dcs.values())[0].net.stop()
1166
1167
peusterm17008d02018-12-19 09:58:17 +01001168def generate_subnets(prefix, base, subnet_size=50, mask=24):
1169 # Generate a list of ipaddress in subnets
1170 r = list()
1171 for net in range(base, base + subnet_size):
1172 subnet = "{0}.{1}.0/{2}".format(prefix, net, mask)
1173 r.append(ipaddress.ip_network(unicode(subnet)))
1174 return r
1175
1176
1177def reset_subnets():
1178 global ELINE_SUBNETS
1179 global ELAN_SUBNETS
1180 # private subnet definitions for the generated interfaces
1181 # 30.0.xxx.0/24
1182 ELAN_SUBNETS = generate_subnets('30.0', 0, subnet_size=50, mask=24)
1183 # 20.0.xxx.0/24
1184 ELINE_SUBNETS = generate_subnets('20.0', 0, subnet_size=50, mask=24)
1185
1186
peusterm20e54452018-08-06 16:09:23 +02001187def initialize_GK():
1188 global GK
1189 GK = Gatekeeper()
1190
1191
1192# create a single, global GK object
1193GK = None
1194initialize_GK()
1195# setup Flask
peustermf8f135c2019-03-19 17:05:57 +01001196http_server = None
peusterm20e54452018-08-06 16:09:23 +02001197app = Flask(__name__)
1198app.config['MAX_CONTENT_LENGTH'] = 512 * 1024 * 1024 # 512 MB max upload
1199api = fr.Api(app)
1200# define endpoints
peusterm8246f982019-06-06 17:43:34 +02001201api.add_resource(Packages, '/packages', '/api/v2/packages', '/api/v3/packages')
1202api.add_resource(Services, '/services', '/api/v2/services', '/api/v3/services')
peusterm20e54452018-08-06 16:09:23 +02001203api.add_resource(Instantiations, '/instantiations',
peusterm8246f982019-06-06 17:43:34 +02001204 '/api/v2/instantiations', '/api/v2/requests', '/api/v3/requests',
1205 '/api/v3/records/services')
peusterm20e54452018-08-06 16:09:23 +02001206api.add_resource(Exit, '/emulator/exit')
1207
1208
1209def start_rest_api(host, port, datacenters=dict()):
peustermf8f135c2019-03-19 17:05:57 +01001210 global http_server
peusterm20e54452018-08-06 16:09:23 +02001211 GK.dcs = datacenters
1212 GK.net = get_dc_network()
1213 # start the Flask server (not the best performance but ok for our use case)
peustermf8f135c2019-03-19 17:05:57 +01001214 # app.run(host=host,
1215 # port=port,
1216 # debug=True,
1217 # use_reloader=False # this is needed to run Flask in a non-main thread
1218 # )
1219 http_server = WSGIServer((host, port), app, log=open("/dev/null", "w"))
1220 http_server.serve_forever()
1221
1222
1223def stop_rest_api():
1224 if http_server:
1225 http_server.close()
peusterm20e54452018-08-06 16:09:23 +02001226
1227
1228def ensure_dir(name):
1229 if not os.path.exists(name):
1230 os.makedirs(name)
1231
1232
1233def load_yaml(path):
1234 with open(path, "r") as f:
1235 try:
1236 r = yaml.load(f)
1237 except yaml.YAMLError as exc:
1238 LOG.exception("YAML parse error: %r" % str(exc))
1239 r = dict()
1240 return r
1241
1242
1243def make_relative_path(path):
1244 if path.startswith("file://"):
1245 path = path.replace("file://", "", 1)
1246 if path.startswith("/"):
1247 path = path.replace("/", "", 1)
1248 return path
1249
1250
1251def get_dc_network():
1252 """
1253 retrieve the DCnetwork where this dummygatekeeper (GK) connects to.
1254 Assume at least 1 datacenter is connected to this GK, and that all datacenters belong to the same DCNetwork
1255 :return:
1256 """
1257 assert (len(GK.dcs) > 0)
1258 return GK.dcs.values()[0].net
1259
1260
1261def parse_interface(interface_name):
1262 """
1263 convert the interface name in the nsd to the according vnf_id, vnf_interface names
1264 :param interface_name:
1265 :return:
1266 """
peusterm20e54452018-08-06 16:09:23 +02001267 if ':' in interface_name:
1268 vnf_id, vnf_interface = interface_name.split(':')
peusterm20e54452018-08-06 16:09:23 +02001269 else:
peusterm9467ee52018-12-18 16:22:46 +01001270 vnf_id = None
peusterm20e54452018-08-06 16:09:23 +02001271 vnf_interface = interface_name
peusterm17008d02018-12-19 09:58:17 +01001272 return vnf_id, vnf_interface
peusterm20e54452018-08-06 16:09:23 +02001273
1274
peusterm8c6b10b2019-04-13 12:49:41 +02001275def get_container_name(vnf_id, vdu_id, ssiid=None):
1276 if ssiid is not None:
1277 return "{}.{}.{}".format(vnf_id, vdu_id, ssiid)
peusterm0c7afe62018-12-14 19:20:19 +01001278 return "{}.{}".format(vnf_id, vdu_id)
1279
1280
peusterm8c6b10b2019-04-13 12:49:41 +02001281def get_triple_id(descr):
1282 return "{}.{}.{}".format(
1283 descr.get("vendor"), descr.get("name"), descr.get("version"))
1284
1285
1286def update_port_mapping_multi_instance(ssiid, port_bindings):
1287 """
1288 Port_bindings are used to expose ports of the deployed containers.
1289 They would collide if we deploy multiple service instances.
1290 This function adds a offset to them which is based on the
1291 short service instance id (SSIID).
1292 MULTI_INSTANCE_PORT_OFFSET
1293 """
1294 def _offset(p):
1295 return p + MULTI_INSTANCE_PORT_OFFSET * ssiid
1296
1297 port_bindings = {k: _offset(v) for k, v in port_bindings.iteritems()}
1298 return port_bindings
1299
1300
peusterm20e54452018-08-06 16:09:23 +02001301if __name__ == '__main__':
1302 """
1303 Lets allow to run the API in standalone mode.
1304 """
1305 GK_STANDALONE_MODE = True
1306 logging.getLogger("werkzeug").setLevel(logging.INFO)
1307 start_rest_api("0.0.0.0", 8000)