blob: 59b1900ebe15b28b3238953b0e17a51be818fedb [file] [log] [blame]
peusterm72f09882018-05-15 17:10:27 +02001# Copyright (c) 2015 SONATA-NFV and Paderborn University
2# ALL RIGHTS RESERVED.
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15#
16# Neither the name of the SONATA-NFV, Paderborn University
17# nor the names of its contributors may be used to endorse or promote
18# products derived from this software without specific prior written
19# permission.
20#
21# This work has been performed in the framework of the SONATA project,
22# funded by the European Commission under Grant number 671517 through
23# the Horizon 2020 and 5G-PPP programmes. The authors would like to
24# acknowledge the contributions of their colleagues of the SONATA
25# partner consortium (www.sonata-nfv.eu).
peusterme26487b2016-03-08 14:00:21 +010026import logging
27import os
28import uuid
29import hashlib
peusterm786cd542016-03-14 14:12:17 +010030import zipfile
peusterm7ec665d2016-03-14 15:20:44 +010031import yaml
peusterme66edf72016-08-23 11:11:12 +020032import threading
peusterm72f09882018-05-15 17:10:27 +020033from docker import DockerClient
peusterme26487b2016-03-08 14:00:21 +010034from flask import Flask, request
35import flask_restful as fr
wtaverni5b23b662016-06-20 12:26:21 +020036from collections import defaultdict
stevenvanrossemdb2f9432016-08-20 00:01:11 +020037import pkg_resources
stevenvanrosseme8d86282017-01-28 00:52:22 +010038from subprocess import Popen
stevenvanrossemce032e12017-04-05 17:31:20 +020039from random import randint
40import ipaddress
stevenvanrossem00e65b92017-04-18 16:57:40 +020041import copy
edmaas0b532e32017-05-15 14:51:59 +020042import time
peusterm72f09882018-05-15 17:10:27 +020043from functools import reduce
peusterme26487b2016-03-08 14:00:21 +010044
peusterm398cd3b2016-03-21 15:04:54 +010045logging.basicConfig()
peusterm786cd542016-03-14 14:12:17 +010046LOG = logging.getLogger("sonata-dummy-gatekeeper")
47LOG.setLevel(logging.DEBUG)
peusterme26487b2016-03-08 14:00:21 +010048logging.getLogger("werkzeug").setLevel(logging.WARNING)
49
peusterm92237dc2016-03-21 15:45:58 +010050GK_STORAGE = "/tmp/son-dummy-gk/"
51UPLOAD_FOLDER = os.path.join(GK_STORAGE, "uploads/")
52CATALOG_FOLDER = os.path.join(GK_STORAGE, "catalog/")
peusterme26487b2016-03-08 14:00:21 +010053
peusterm82d406e2016-05-02 20:52:06 +020054# Enable Dockerfile build functionality
55BUILD_DOCKERFILE = False
56
peusterm72f09882018-05-15 17:10:27 +020057# flag to indicate that we run without the emulator (only the bare API for
58# integration testing)
peusterm398cd3b2016-03-21 15:04:54 +010059GK_STANDALONE_MODE = False
60
peusterm56356cb2016-05-03 10:43:43 +020061# should a new version of an image be pulled even if its available
wtaverni5b23b662016-06-20 12:26:21 +020062FORCE_PULL = False
peusterme26487b2016-03-08 14:00:21 +010063
stevenvanrossemdb2f9432016-08-20 00:01:11 +020064# Automatically deploy SAPs (endpoints) of the service as new containers
peusterm72f09882018-05-15 17:10:27 +020065# Attention: This is not a configuration switch but a global variable!
66# Don't change its default value.
stevenvanrossemdb2f9432016-08-20 00:01:11 +020067DEPLOY_SAP = False
68
peusterm72f09882018-05-15 17:10:27 +020069# flag to indicate if we use bidirectional forwarding rules in the
70# automatic chaining process
peusterm76eb8652016-09-06 11:07:16 +020071BIDIRECTIONAL_CHAIN = False
72
peusterm72f09882018-05-15 17:10:27 +020073# override the management interfaces in the descriptors with default
74# docker0 interfaces in the containers
stevenvanrossem4378f162017-04-14 16:09:21 +020075USE_DOCKER_MGMT = False
76
peusterm72f09882018-05-15 17:10:27 +020077# automatically deploy uploaded packages (no need to execute son-access
78# deploy --latest separately)
stevenvanrossem15013852017-04-14 16:25:12 +020079AUTO_DEPLOY = False
stevenvanrossemce032e12017-04-05 17:31:20 +020080
stevenvanrossem301d2d32017-04-17 21:22:10 +020081# and also automatically terminate any other running services
82AUTO_DELETE = False
83
peusterm72f09882018-05-15 17:10:27 +020084
stevenvanrossemce032e12017-04-05 17:31:20 +020085def generate_subnets(prefix, base, subnet_size=50, mask=24):
86 # Generate a list of ipaddress in subnets
87 r = list()
88 for net in range(base, base + subnet_size):
89 subnet = "{0}.{1}.0/{2}".format(prefix, net, mask)
90 r.append(ipaddress.ip_network(unicode(subnet)))
91 return r
peusterm72f09882018-05-15 17:10:27 +020092
93
stevenvanrossemce032e12017-04-05 17:31:20 +020094# private subnet definitions for the generated interfaces
stevenvanrossemb1018722017-04-06 02:21:20 +020095# 10.10.xxx.0/24
stevenvanrossem86e64a02017-04-13 02:21:45 +020096SAP_SUBNETS = generate_subnets('10.10', 0, subnet_size=50, mask=30)
97# 10.20.xxx.0/30
stevenvanrossemce032e12017-04-05 17:31:20 +020098ELAN_SUBNETS = generate_subnets('10.20', 0, subnet_size=50, mask=24)
stevenvanrossemb1018722017-04-06 02:21:20 +020099# 10.30.xxx.0/30
stevenvanrossemce032e12017-04-05 17:31:20 +0200100ELINE_SUBNETS = generate_subnets('10.30', 0, subnet_size=50, mask=30)
101
stevenvanrossemc6ace2d2017-04-21 13:47:06 +0200102# path to the VNFD for the SAP VNF that is deployed as internal SAP point
peusterm72f09882018-05-15 17:10:27 +0200103SAP_VNFD = None
stevenvanrossemce032e12017-04-05 17:31:20 +0200104
edmaas0b532e32017-05-15 14:51:59 +0200105# Time in seconds to wait for vnf stop scripts to execute fully
106VNF_STOP_WAIT_TIME = 5
107
peusterm72f09882018-05-15 17:10:27 +0200108
peusterme26487b2016-03-08 14:00:21 +0100109class Gatekeeper(object):
110
111 def __init__(self):
peusterm786cd542016-03-14 14:12:17 +0100112 self.services = dict()
peusterm082378b2016-03-16 20:14:22 +0100113 self.dcs = dict()
stevenvanrossembecc7c52016-11-07 05:52:01 +0100114 self.net = None
peusterm72f09882018-05-15 17:10:27 +0200115 # used to generate short names for VNFs (Mininet limitation)
116 self.vnf_counter = 0
peusterm786cd542016-03-14 14:12:17 +0100117 LOG.info("Create SONATA dummy gatekeeper.")
peusterme26487b2016-03-08 14:00:21 +0100118
peusterm786cd542016-03-14 14:12:17 +0100119 def register_service_package(self, service_uuid, service):
120 """
121 register new service package
122 :param service_uuid
123 :param service object
124 """
125 self.services[service_uuid] = service
126 # lets perform all steps needed to onboard the service
127 service.onboard()
128
peusterm3444ae42016-03-16 20:46:41 +0100129 def get_next_vnf_name(self):
130 self.vnf_counter += 1
peusterm398cd3b2016-03-21 15:04:54 +0100131 return "vnf%d" % self.vnf_counter
peusterm3444ae42016-03-16 20:46:41 +0100132
peusterm786cd542016-03-14 14:12:17 +0100133
134class Service(object):
135 """
136 This class represents a NS uploaded as a *.son package to the
137 dummy gatekeeper.
138 Can have multiple running instances of this service.
139 """
140
141 def __init__(self,
142 service_uuid,
143 package_file_hash,
144 package_file_path):
145 self.uuid = service_uuid
146 self.package_file_hash = package_file_hash
147 self.package_file_path = package_file_path
peusterm72f09882018-05-15 17:10:27 +0200148 self.package_content_path = os.path.join(
149 CATALOG_FOLDER, "services/%s" % self.uuid)
peusterm7ec665d2016-03-14 15:20:44 +0100150 self.manifest = None
151 self.nsd = None
152 self.vnfds = dict()
stevenvanrossemce032e12017-04-05 17:31:20 +0200153 self.saps = dict()
154 self.saps_ext = list()
155 self.saps_int = list()
peustermbdfab7e2016-03-14 16:03:30 +0100156 self.local_docker_files = dict()
peusterm82d406e2016-05-02 20:52:06 +0200157 self.remote_docker_image_urls = dict()
peusterm786cd542016-03-14 14:12:17 +0100158 self.instances = dict()
stevenvanrossem29afff52017-05-03 12:39:51 +0200159 # dict to find the vnf_name for any vnf id
stevenvanrossemce032e12017-04-05 17:31:20 +0200160 self.vnf_id2vnf_name = dict()
peusterme26487b2016-03-08 14:00:21 +0100161
peusterm786cd542016-03-14 14:12:17 +0100162 def onboard(self):
163 """
164 Do all steps to prepare this service to be instantiated
165 :return:
166 """
167 # 1. extract the contents of the package and store them in our catalog
168 self._unpack_service_package()
169 # 2. read in all descriptor files
peusterm7ec665d2016-03-14 15:20:44 +0100170 self._load_package_descriptor()
171 self._load_nsd()
172 self._load_vnfd()
stevenvanrossemdb2f9432016-08-20 00:01:11 +0200173 if DEPLOY_SAP:
174 self._load_saps()
peusterm786cd542016-03-14 14:12:17 +0100175 # 3. prepare container images (e.g. download or build Dockerfile)
peusterm82d406e2016-05-02 20:52:06 +0200176 if BUILD_DOCKERFILE:
177 self._load_docker_files()
178 self._build_images_from_dockerfiles()
179 else:
180 self._load_docker_urls()
181 self._pull_predefined_dockerimages()
peusterm3bb86bf2016-08-15 09:47:57 +0200182 LOG.info("On-boarded service: %r" % self.manifest.get("name"))
peusterm7ec665d2016-03-14 15:20:44 +0100183
peusterm082378b2016-03-16 20:14:22 +0100184 def start_service(self):
peusterm3444ae42016-03-16 20:46:41 +0100185 """
186 This methods creates and starts a new service instance.
187 It computes placements, iterates over all VNFDs, and starts
188 each VNFD as a Docker container in the data center selected
189 by the placement algorithm.
190 :return:
191 """
192 LOG.info("Starting service %r" % self.uuid)
stevenvanrossemd87fe472016-05-11 11:34:34 +0200193
peusterm3444ae42016-03-16 20:46:41 +0100194 # 1. each service instance gets a new uuid to identify it
peusterm082378b2016-03-16 20:14:22 +0100195 instance_uuid = str(uuid.uuid4())
peusterm3444ae42016-03-16 20:46:41 +0100196 # build a instances dict (a bit like a NSR :))
197 self.instances[instance_uuid] = dict()
198 self.instances[instance_uuid]["vnf_instances"] = list()
stevenvanrossemd87fe472016-05-11 11:34:34 +0200199
peusterm72f09882018-05-15 17:10:27 +0200200 # 2. compute placement of this service instance (adds DC names to
201 # VNFDs)
peusterm398cd3b2016-03-21 15:04:54 +0100202 if not GK_STANDALONE_MODE:
peusterm72f09882018-05-15 17:10:27 +0200203 # self._calculate_placement(FirstDcPlacement)
stevenvanrossemce032e12017-04-05 17:31:20 +0200204 self._calculate_placement(RoundRobinDcPlacementWithSAPs)
stevenvanrossemce032e12017-04-05 17:31:20 +0200205 # 3. start all vnfds that we have in the service (except SAPs)
stevenvanrossema58772a2017-04-27 15:10:59 +0200206 for vnf_id in self.vnfds:
207 vnfd = self.vnfds[vnf_id]
peusterm398cd3b2016-03-21 15:04:54 +0100208 vnfi = None
209 if not GK_STANDALONE_MODE:
stevenvanrossem29afff52017-05-03 12:39:51 +0200210 vnfi = self._start_vnfd(vnfd, vnf_id)
peusterm398cd3b2016-03-21 15:04:54 +0100211 self.instances[instance_uuid]["vnf_instances"].append(vnfi)
stevenvanrossemd87fe472016-05-11 11:34:34 +0200212
stevenvanrossemce032e12017-04-05 17:31:20 +0200213 # 4. start all SAPs in the service
214 for sap in self.saps:
215 self._start_sap(self.saps[sap], instance_uuid)
216
217 # 5. Deploy E-Line and E_LAN links
peusterm0611b672017-06-26 16:15:07 +0200218 # Attention: Only done if ""forwarding_graphs" section in NSD exists,
219 # even if "forwarding_graphs" are not used directly.
220 if "virtual_links" in self.nsd and "forwarding_graphs" in self.nsd:
edmaasf5d0cbe2016-12-11 15:12:26 +0100221 vlinks = self.nsd["virtual_links"]
stevenvanrossemce032e12017-04-05 17:31:20 +0200222 # constituent virtual links are not checked
peusterm72f09882018-05-15 17:10:27 +0200223 # fwd_links = self.nsd["forwarding_graphs"][0]["constituent_virtual_links"]
224 eline_fwd_links = [l for l in vlinks if (
225 l["connectivity_type"] == "E-Line")]
226 elan_fwd_links = [l for l in vlinks if (
227 l["connectivity_type"] == "E-LAN")]
stevenvanrossemd87fe472016-05-11 11:34:34 +0200228
stevenvanrossem9cc73602017-01-27 23:37:29 +0100229 GK.net.deployed_elines.extend(eline_fwd_links)
230 GK.net.deployed_elans.extend(elan_fwd_links)
stevenvanrossembecc7c52016-11-07 05:52:01 +0100231
stevenvanrossemce032e12017-04-05 17:31:20 +0200232 # 5a. deploy E-Line links
233 self._connect_elines(eline_fwd_links, instance_uuid)
stevenvanrossemd87fe472016-05-11 11:34:34 +0200234
stevenvanrossemce032e12017-04-05 17:31:20 +0200235 # 5b. deploy E-LAN links
236 self._connect_elans(elan_fwd_links, instance_uuid)
stevenvanrossemdb2f9432016-08-20 00:01:11 +0200237
peusterm72f09882018-05-15 17:10:27 +0200238 # 6. run the emulator specific entrypoint scripts in the VNFIs of this
239 # service instance
240 self._trigger_emulator_start_scripts_in_vnfis(
241 self.instances[instance_uuid]["vnf_instances"])
peusterm8484b902016-06-21 09:03:35 +0200242
peusterm3444ae42016-03-16 20:46:41 +0100243 LOG.info("Service started. Instance id: %r" % instance_uuid)
peusterm082378b2016-03-16 20:14:22 +0100244 return instance_uuid
245
edmaas9c4fd112016-10-05 19:45:57 +0200246 def stop_service(self, instance_uuid):
edmaasd454d542016-09-29 13:19:22 +0200247 """
248 This method stops a running service instance.
edmaas74d72492016-10-05 19:59:22 +0200249 It iterates over all VNF instances, stopping them each
edmaasd454d542016-09-29 13:19:22 +0200250 and removing them from their data center.
251
edmaas74d72492016-10-05 19:59:22 +0200252 :param instance_uuid: the uuid of the service instance to be stopped
edmaasd454d542016-09-29 13:19:22 +0200253 """
edmaas9c4fd112016-10-05 19:45:57 +0200254 LOG.info("Stopping service %r" % self.uuid)
255 # get relevant information
256 # instance_uuid = str(self.uuid.uuid4())
257 vnf_instances = self.instances[instance_uuid]["vnf_instances"]
258
peusterm72f09882018-05-15 17:10:27 +0200259 # trigger stop skripts in vnf instances and wait a few seconds for
260 # completion
edmaas0b532e32017-05-15 14:51:59 +0200261 self._trigger_emulator_stop_scripts_in_vnfis(vnf_instances)
262 time.sleep(VNF_STOP_WAIT_TIME)
263
edmaas9c4fd112016-10-05 19:45:57 +0200264 for v in vnf_instances:
edmaas74d72492016-10-05 19:59:22 +0200265 self._stop_vnfi(v)
edmaas9c4fd112016-10-05 19:45:57 +0200266
stevenvanrossem00e65b92017-04-18 16:57:40 +0200267 for sap_name in self.saps_ext:
268 ext_sap = self.saps[sap_name]
269 target_dc = ext_sap.get("dc")
stevenvanrossem68a0ba92017-05-03 21:48:26 +0200270 target_dc.removeExternalSAP(sap_name)
peusterm72f09882018-05-15 17:10:27 +0200271 LOG.info("Stopping the SAP instance: %r in DC %r" %
272 (sap_name, target_dc))
stevenvanrossem00e65b92017-04-18 16:57:40 +0200273
edmaas9c4fd112016-10-05 19:45:57 +0200274 if not GK_STANDALONE_MODE:
275 # remove placement?
276 # self._remove_placement(RoundRobinPlacement)
277 None
278
279 # last step: remove the instance from the list of all instances
280 del self.instances[instance_uuid]
edmaasd454d542016-09-29 13:19:22 +0200281
stevenvanrossemf3712012017-05-04 00:01:52 +0200282 def _start_vnfd(self, vnfd, vnf_id, **kwargs):
peusterm398cd3b2016-03-21 15:04:54 +0100283 """
284 Start a single VNFD of this service
285 :param vnfd: vnfd descriptor dict
stevenvanrossema58772a2017-04-27 15:10:59 +0200286 :param vnf_id: unique id of this vnf in the nsd
peusterm398cd3b2016-03-21 15:04:54 +0100287 :return:
288 """
stevenvanrossema58772a2017-04-27 15:10:59 +0200289 # the vnf_name refers to the container image to be deployed
stevenvanrossem29afff52017-05-03 12:39:51 +0200290 vnf_name = vnfd.get("name")
291
peusterm398cd3b2016-03-21 15:04:54 +0100292 # iterate over all deployment units within each VNFDs
293 for u in vnfd.get("virtual_deployment_units"):
294 # 1. get the name of the docker image to start and the assigned DC
stevenvanrossema58772a2017-04-27 15:10:59 +0200295 if vnf_id not in self.remote_docker_image_urls:
296 raise Exception("No image name for %r found. Abort." % vnf_id)
297 docker_name = self.remote_docker_image_urls.get(vnf_id)
peusterm398cd3b2016-03-21 15:04:54 +0100298 target_dc = vnfd.get("dc")
299 # 2. perform some checks to ensure we can start the container
300 assert(docker_name is not None)
301 assert(target_dc is not None)
302 if not self._check_docker_image_exists(docker_name):
peusterm72f09882018-05-15 17:10:27 +0200303 raise Exception(
304 "Docker image %r not found. Abort." % docker_name)
edmaas7e084ea2016-11-28 13:50:23 +0100305
306 # 3. get the resource limits
307 res_req = u.get("resource_requirements")
308 cpu_list = res_req.get("cpu").get("cores")
peusterm5a952b22017-04-27 15:20:51 +0200309 if cpu_list is None:
peusterm3a8ec882017-04-27 14:44:54 +0200310 cpu_list = res_req.get("cpu").get("vcpus")
peusterm5a952b22017-04-27 15:20:51 +0200311 if cpu_list is None:
peusterm72f09882018-05-15 17:10:27 +0200312 cpu_list = "1"
edmaas7e084ea2016-11-28 13:50:23 +0100313 cpu_bw = res_req.get("cpu").get("cpu_bw")
314 if not cpu_bw:
peusterm72f09882018-05-15 17:10:27 +0200315 cpu_bw = 1
edmaas7e084ea2016-11-28 13:50:23 +0100316 mem_num = str(res_req.get("memory").get("size"))
peusterm72f09882018-05-15 17:10:27 +0200317 if len(mem_num) == 0:
318 mem_num = "2"
edmaas7e084ea2016-11-28 13:50:23 +0100319 mem_unit = str(res_req.get("memory").get("size_unit"))
peusterm72f09882018-05-15 17:10:27 +0200320 if str(mem_unit) == 0:
321 mem_unit = "GB"
edmaas7e084ea2016-11-28 13:50:23 +0100322 mem_limit = float(mem_num)
peusterm72f09882018-05-15 17:10:27 +0200323 if mem_unit == "GB":
324 mem_limit = mem_limit * 1024 * 1024 * 1024
325 elif mem_unit == "MB":
326 mem_limit = mem_limit * 1024 * 1024
327 elif mem_unit == "KB":
328 mem_limit = mem_limit * 1024
edmaas7e084ea2016-11-28 13:50:23 +0100329 mem_lim = int(mem_limit)
peusterm72f09882018-05-15 17:10:27 +0200330 cpu_period, cpu_quota = self._calculate_cpu_cfs_values(
331 float(cpu_bw))
edmaas7e084ea2016-11-28 13:50:23 +0100332
peusterm72f09882018-05-15 17:10:27 +0200333 # check if we need to deploy the management ports (defined as
334 # type:management both on in the vnfd and nsd)
stevenvanrossemb1018722017-04-06 02:21:20 +0200335 intfs = vnfd.get("connection_points", [])
stevenvanrossem56749672017-04-06 14:44:33 +0200336 mgmt_intf_names = []
stevenvanrossemb1018722017-04-06 02:21:20 +0200337 if USE_DOCKER_MGMT:
peusterm72f09882018-05-15 17:10:27 +0200338 mgmt_intfs = [vnf_id + ':' + intf['id']
339 for intf in intfs if intf.get('type') == 'management']
340 # check if any of these management interfaces are used in a
341 # management-type network in the nsd
stevenvanrossemb1018722017-04-06 02:21:20 +0200342 for nsd_intf_name in mgmt_intfs:
peusterm72f09882018-05-15 17:10:27 +0200343 vlinks = [l["connection_points_reference"]
344 for l in self.nsd.get("virtual_links", [])]
stevenvanrossemb1018722017-04-06 02:21:20 +0200345 for link in vlinks:
peusterm72f09882018-05-15 17:10:27 +0200346 if nsd_intf_name in link and self.check_mgmt_interface(
347 link):
348 # this is indeed a management interface and can be
349 # skipped
350 vnf_id, vnf_interface, vnf_sap_docker_name = parse_interface(
351 nsd_intf_name)
352 found_interfaces = [
353 intf for intf in intfs if intf.get('id') == vnf_interface]
stevenvanrossemb1018722017-04-06 02:21:20 +0200354 intfs.remove(found_interfaces[0])
stevenvanrossem56749672017-04-06 14:44:33 +0200355 mgmt_intf_names.append(vnf_interface)
stevenvanrossemb1018722017-04-06 02:21:20 +0200356
edmaas8d4290a2017-03-27 13:56:59 +0200357 # 4. generate the volume paths for the docker container
peusterm72f09882018-05-15 17:10:27 +0200358 volumes = list()
edmaas8d4290a2017-03-27 13:56:59 +0200359 # a volume to extract log files
peusterm72f09882018-05-15 17:10:27 +0200360 docker_log_path = "/tmp/results/%s/%s" % (self.uuid, vnf_id)
361 LOG.debug("LOG path for vnf %s is %s." % (vnf_id, docker_log_path))
edmaas8d4290a2017-03-27 13:56:59 +0200362 if not os.path.exists(docker_log_path):
peusterm72f09882018-05-15 17:10:27 +0200363 LOG.debug("Creating folder %s" % docker_log_path)
edmaas8d4290a2017-03-27 13:56:59 +0200364 os.makedirs(docker_log_path)
edmaas8d4290a2017-03-27 13:56:59 +0200365
peusterm72f09882018-05-15 17:10:27 +0200366 volumes.append(docker_log_path + ":/mnt/share/")
edmaas8d4290a2017-03-27 13:56:59 +0200367
368 # 5. do the dc.startCompute(name="foobar") call to run the container
peusterm398cd3b2016-03-21 15:04:54 +0100369 # TODO consider flavors, and other annotations
stevenvanrossemdb2f9432016-08-20 00:01:11 +0200370 # TODO: get all vnf id's from the nsd for this vnfd and use those as dockername
stevenvanrossem11a021f2016-08-05 13:43:00 +0200371 # use the vnf_id in the nsd as docker name
372 # so deployed containers can be easily mapped back to the nsd
peusterm72f09882018-05-15 17:10:27 +0200373 LOG.info("Starting %r as %r in DC %r" %
374 (vnf_name, vnf_id, vnfd.get("dc")))
stevenvanrossem29afff52017-05-03 12:39:51 +0200375 LOG.debug("Interfaces for %r: %r" % (vnf_id, intfs))
edmaas8d4290a2017-03-27 13:56:59 +0200376 vnfi = target_dc.startCompute(
peusterm72f09882018-05-15 17:10:27 +0200377 vnf_id,
378 network=intfs,
379 image=docker_name,
380 flavor_name="small",
381 cpu_quota=cpu_quota,
382 cpu_period=cpu_period,
383 cpuset=cpu_list,
384 mem_limit=mem_lim,
385 volumes=volumes,
386 type=kwargs.get('type', 'docker'))
stevenvanrossemb1018722017-04-06 02:21:20 +0200387
peusterm72f09882018-05-15 17:10:27 +0200388 # rename the docker0 interfaces (eth0) to the management port name
389 # defined in the VNFD
stevenvanrossemb1018722017-04-06 02:21:20 +0200390 if USE_DOCKER_MGMT:
stevenvanrossem56749672017-04-06 14:44:33 +0200391 for intf_name in mgmt_intf_names:
peusterm72f09882018-05-15 17:10:27 +0200392 self._vnf_reconfigure_network(
393 vnfi, 'eth0', new_name=intf_name)
stevenvanrossemb1018722017-04-06 02:21:20 +0200394
peusterm398cd3b2016-03-21 15:04:54 +0100395 return vnfi
396
edmaas74d72492016-10-05 19:59:22 +0200397 def _stop_vnfi(self, vnfi):
edmaasd454d542016-09-29 13:19:22 +0200398 """
edmaas74d72492016-10-05 19:59:22 +0200399 Stop a VNF instance.
edmaasd454d542016-09-29 13:19:22 +0200400
edmaas74d72492016-10-05 19:59:22 +0200401 :param vnfi: vnf instance to be stopped
edmaasd454d542016-09-29 13:19:22 +0200402 """
edmaas9c4fd112016-10-05 19:45:57 +0200403 # Find the correct datacenter
404 status = vnfi.getStatus()
405 dc = vnfi.datacenter
edmaasd1626e52017-04-02 16:21:57 +0200406
edmaas9c4fd112016-10-05 19:45:57 +0200407 # stop the vnfi
peusterm72f09882018-05-15 17:10:27 +0200408 LOG.info("Stopping the vnf instance contained in %r in DC %r" %
409 (status["name"], dc))
edmaas9c4fd112016-10-05 19:45:57 +0200410 dc.stopCompute(status["name"])
edmaasd454d542016-09-29 13:19:22 +0200411
stevenvanrossem29afff52017-05-03 12:39:51 +0200412 def _get_vnf_instance(self, instance_uuid, vnf_id):
peusterm6b5224d2016-07-20 13:20:31 +0200413 """
stevenvanrossem29afff52017-05-03 12:39:51 +0200414 Returns the Docker object for the given VNF id (or Docker name).
peusterm6b5224d2016-07-20 13:20:31 +0200415 :param instance_uuid: UUID of the service instance to search in.
416 :param name: VNF name or Docker name. We are fuzzy here.
417 :return:
418 """
stevenvanrossem29afff52017-05-03 12:39:51 +0200419 dn = vnf_id
peusterm6b5224d2016-07-20 13:20:31 +0200420 for vnfi in self.instances[instance_uuid]["vnf_instances"]:
421 if vnfi.name == dn:
422 return vnfi
stevenvanrossemce032e12017-04-05 17:31:20 +0200423 LOG.warning("No container with name: {0} found.".format(dn))
peusterm6b5224d2016-07-20 13:20:31 +0200424 return None
425
426 @staticmethod
stevenvanrossemb1018722017-04-06 02:21:20 +0200427 def _vnf_reconfigure_network(vnfi, if_name, net_str=None, new_name=None):
peusterm6b5224d2016-07-20 13:20:31 +0200428 """
429 Reconfigure the network configuration of a specific interface
430 of a running container.
stevenvanrossemce032e12017-04-05 17:31:20 +0200431 :param vnfi: container instance
peusterm6b5224d2016-07-20 13:20:31 +0200432 :param if_name: interface name
433 :param net_str: network configuration string, e.g., 1.2.3.4/24
434 :return:
435 """
stevenvanrossemb1018722017-04-06 02:21:20 +0200436
437 # assign new ip address
438 if net_str is not None:
439 intf = vnfi.intf(intf=if_name)
440 if intf is not None:
441 intf.setIP(net_str)
peusterm72f09882018-05-15 17:10:27 +0200442 LOG.debug("Reconfigured network of %s:%s to %r" %
443 (vnfi.name, if_name, net_str))
stevenvanrossemb1018722017-04-06 02:21:20 +0200444 else:
peusterm72f09882018-05-15 17:10:27 +0200445 LOG.warning("Interface not found: %s:%s. Network reconfiguration skipped." % (
446 vnfi.name, if_name))
stevenvanrossemb1018722017-04-06 02:21:20 +0200447
448 if new_name is not None:
449 vnfi.cmd('ip link set', if_name, 'down')
450 vnfi.cmd('ip link set', if_name, 'name', new_name)
451 vnfi.cmd('ip link set', new_name, 'up')
peusterm72f09882018-05-15 17:10:27 +0200452 LOG.debug("Reconfigured interface name of %s:%s to %s" %
453 (vnfi.name, if_name, new_name))
peusterm6b5224d2016-07-20 13:20:31 +0200454
peusterm8484b902016-06-21 09:03:35 +0200455 def _trigger_emulator_start_scripts_in_vnfis(self, vnfi_list):
456 for vnfi in vnfi_list:
457 config = vnfi.dcinfo.get("Config", dict())
458 env = config.get("Env", list())
459 for env_var in env:
edmaas7e084ea2016-11-28 13:50:23 +0100460 var, cmd = map(str.strip, map(str, env_var.split('=', 1)))
peusterm72f09882018-05-15 17:10:27 +0200461 LOG.debug("%r = %r" % (var, cmd))
462 if var == "SON_EMU_CMD":
463 LOG.info("Executing entry point script in %r: %r" %
464 (vnfi.name, cmd))
465 # execute command in new thread to ensure that GK is not
466 # blocked by VNF
peusterme66edf72016-08-23 11:11:12 +0200467 t = threading.Thread(target=vnfi.cmdPrint, args=(cmd,))
468 t.daemon = True
469 t.start()
peusterm8484b902016-06-21 09:03:35 +0200470
edmaas0b532e32017-05-15 14:51:59 +0200471 def _trigger_emulator_stop_scripts_in_vnfis(self, vnfi_list):
472 for vnfi in vnfi_list:
473 config = vnfi.dcinfo.get("Config", dict())
474 env = config.get("Env", list())
475 for env_var in env:
476 var, cmd = map(str.strip, map(str, env_var.split('=', 1)))
peusterm72f09882018-05-15 17:10:27 +0200477 if var == "SON_EMU_CMD_STOP":
478 LOG.info("Executing stop script in %r: %r" %
479 (vnfi.name, cmd))
480 # execute command in new thread to ensure that GK is not
481 # blocked by VNF
edmaas0b532e32017-05-15 14:51:59 +0200482 t = threading.Thread(target=vnfi.cmdPrint, args=(cmd,))
483 t.daemon = True
484 t.start()
485
peusterm786cd542016-03-14 14:12:17 +0100486 def _unpack_service_package(self):
487 """
488 unzip *.son file and store contents in CATALOG_FOLDER/services/<service_uuid>/
489 """
peusterm82d406e2016-05-02 20:52:06 +0200490 LOG.info("Unzipping: %r" % self.package_file_path)
peusterm786cd542016-03-14 14:12:17 +0100491 with zipfile.ZipFile(self.package_file_path, "r") as z:
492 z.extractall(self.package_content_path)
493
peusterm7ec665d2016-03-14 15:20:44 +0100494 def _load_package_descriptor(self):
495 """
496 Load the main package descriptor YAML and keep it as dict.
497 :return:
498 """
499 self.manifest = load_yaml(
500 os.path.join(
501 self.package_content_path, "META-INF/MANIFEST.MF"))
502
503 def _load_nsd(self):
504 """
505 Load the entry NSD YAML and keep it as dict.
506 :return:
507 """
508 if "entry_service_template" in self.manifest:
509 nsd_path = os.path.join(
510 self.package_content_path,
511 make_relative_path(self.manifest.get("entry_service_template")))
512 self.nsd = load_yaml(nsd_path)
stevenvanrossembecc7c52016-11-07 05:52:01 +0100513 GK.net.deployed_nsds.append(self.nsd)
stevenvanrossem29afff52017-05-03 12:39:51 +0200514 # create dict to find the vnf_name for any vnf id
515 self.vnf_id2vnf_name = defaultdict(lambda: "NotExistingNode",
peusterm72f09882018-05-15 17:10:27 +0200516 reduce(lambda x, y: dict(x, **y),
stevenvanrossem29afff52017-05-03 12:39:51 +0200517 map(lambda d: {d["vnf_id"]: d["vnf_name"]},
518 self.nsd["network_functions"])))
stevenvanrossemce032e12017-04-05 17:31:20 +0200519
peusterm757fe9a2016-04-04 14:11:58 +0200520 LOG.debug("Loaded NSD: %r" % self.nsd.get("name"))
peusterm7ec665d2016-03-14 15:20:44 +0100521
522 def _load_vnfd(self):
523 """
524 Load all VNFD YAML files referenced in MANIFEST.MF and keep them in dict.
525 :return:
526 """
stevenvanrossema58772a2017-04-27 15:10:59 +0200527
528 # first make a list of all the vnfds in the package
529 vnfd_set = dict()
peusterm7ec665d2016-03-14 15:20:44 +0100530 if "package_content" in self.manifest:
531 for pc in self.manifest.get("package_content"):
peusterm72f09882018-05-15 17:10:27 +0200532 if pc.get(
533 "content-type") == "application/sonata.function_descriptor":
peusterm7ec665d2016-03-14 15:20:44 +0100534 vnfd_path = os.path.join(
535 self.package_content_path,
536 make_relative_path(pc.get("name")))
537 vnfd = load_yaml(vnfd_path)
stevenvanrossema58772a2017-04-27 15:10:59 +0200538 vnfd_set[vnfd.get("name")] = vnfd
539 # then link each vnf_id in the nsd to its vnfd
peusterm72f09882018-05-15 17:10:27 +0200540 for vnf_id in self.vnf_id2vnf_name:
stevenvanrossema58772a2017-04-27 15:10:59 +0200541 vnf_name = self.vnf_id2vnf_name[vnf_id]
542 self.vnfds[vnf_id] = vnfd_set[vnf_name]
543 LOG.debug("Loaded VNFD: {0} id: {1}".format(vnf_name, vnf_id))
peusterm7ec665d2016-03-14 15:20:44 +0100544
stevenvanrossemdb2f9432016-08-20 00:01:11 +0200545 def _load_saps(self):
stevenvanrossemce032e12017-04-05 17:31:20 +0200546 # create list of all SAPs
stevenvanrossemb1018722017-04-06 02:21:20 +0200547 # check if we need to deploy management ports
548 if USE_DOCKER_MGMT:
peusterm72f09882018-05-15 17:10:27 +0200549 SAPs = [p for p in self.nsd["connection_points"]
550 if 'management' not in p.get('type')]
stevenvanrossemb1018722017-04-06 02:21:20 +0200551 else:
552 SAPs = [p for p in self.nsd["connection_points"]]
stevenvanrossemce032e12017-04-05 17:31:20 +0200553
stevenvanrossemdb2f9432016-08-20 00:01:11 +0200554 for sap in SAPs:
stevenvanrossemce032e12017-04-05 17:31:20 +0200555 # endpoint needed in this service
556 sap_id, sap_interface, sap_docker_name = parse_interface(sap['id'])
557 # make sure SAP has type set (default internal)
558 sap["type"] = sap.get("type", 'internal')
stevenvanrossemdb2f9432016-08-20 00:01:11 +0200559
peusterm72f09882018-05-15 17:10:27 +0200560 # Each Service Access Point (connection_point) in the nsd is an IP
561 # address on the host
stevenvanrossemb1018722017-04-06 02:21:20 +0200562 if sap["type"] == "external":
stevenvanrossemce032e12017-04-05 17:31:20 +0200563 # add to vnfds to calculate placement later on
564 sap_net = SAP_SUBNETS.pop(0)
peusterm72f09882018-05-15 17:10:27 +0200565 self.saps[sap_docker_name] = {
566 "name": sap_docker_name, "type": "external", "net": sap_net}
stevenvanrossemce032e12017-04-05 17:31:20 +0200567 # add SAP vnf to list in the NSD so it is deployed later on
peusterm72f09882018-05-15 17:10:27 +0200568 # each SAP gets a unique VNFD and vnf_id in the NSD and custom
569 # type (only defined in the dummygatekeeper)
stevenvanrossemce032e12017-04-05 17:31:20 +0200570 self.nsd["network_functions"].append(
571 {"vnf_id": sap_docker_name, "vnf_name": sap_docker_name, "vnf_type": "sap_ext"})
stevenvanrossemdb2f9432016-08-20 00:01:11 +0200572
peusterm72f09882018-05-15 17:10:27 +0200573 # Each Service Access Point (connection_point) in the nsd is
574 # getting its own container (default)
stevenvanrossemb1018722017-04-06 02:21:20 +0200575 elif sap["type"] == "internal" or sap["type"] == "management":
stevenvanrossemce032e12017-04-05 17:31:20 +0200576 # add SAP to self.vnfds
stevenvanrossemc6ace2d2017-04-21 13:47:06 +0200577 if SAP_VNFD is None:
peusterm72f09882018-05-15 17:10:27 +0200578 sapfile = pkg_resources.resource_filename(
579 __name__, "sap_vnfd.yml")
stevenvanrossemc6ace2d2017-04-21 13:47:06 +0200580 else:
581 sapfile = SAP_VNFD
stevenvanrossemce032e12017-04-05 17:31:20 +0200582 sap_vnfd = load_yaml(sapfile)
583 sap_vnfd["connection_points"][0]["id"] = sap_interface
584 sap_vnfd["name"] = sap_docker_name
585 sap_vnfd["type"] = "internal"
586 # add to vnfds to calculate placement later on and deploy
587 self.saps[sap_docker_name] = sap_vnfd
588 # add SAP vnf to list in the NSD so it is deployed later on
589 # each SAP get a unique VNFD and vnf_id in the NSD
590 self.nsd["network_functions"].append(
591 {"vnf_id": sap_docker_name, "vnf_name": sap_docker_name, "vnf_type": "sap_int"})
592
peusterm72f09882018-05-15 17:10:27 +0200593 LOG.debug("Loaded SAP: name: {0}, type: {1}".format(
594 sap_docker_name, sap['type']))
stevenvanrossemce032e12017-04-05 17:31:20 +0200595
596 # create sap lists
peusterm72f09882018-05-15 17:10:27 +0200597 self.saps_ext = [self.saps[sap]['name']
598 for sap in self.saps if self.saps[sap]["type"] == "external"]
599 self.saps_int = [self.saps[sap]['name']
600 for sap in self.saps if self.saps[sap]["type"] == "internal"]
stevenvanrossemce032e12017-04-05 17:31:20 +0200601
602 def _start_sap(self, sap, instance_uuid):
stevenvanrossemb1018722017-04-06 02:21:20 +0200603 if not DEPLOY_SAP:
604 return
605
peusterm72f09882018-05-15 17:10:27 +0200606 LOG.info('start SAP: {0} ,type: {1}'.format(sap['name'], sap['type']))
stevenvanrossemce032e12017-04-05 17:31:20 +0200607 if sap["type"] == "internal":
608 vnfi = None
609 if not GK_STANDALONE_MODE:
stevenvanrossemf3712012017-05-04 00:01:52 +0200610 vnfi = self._start_vnfd(sap, sap['name'], type='sap_int')
stevenvanrossemce032e12017-04-05 17:31:20 +0200611 self.instances[instance_uuid]["vnf_instances"].append(vnfi)
612
613 elif sap["type"] == "external":
614 target_dc = sap.get("dc")
615 # add interface to dc switch
stevenvanrossem86e64a02017-04-13 02:21:45 +0200616 target_dc.attachExternalSAP(sap['name'], sap['net'])
stevenvanrossemce032e12017-04-05 17:31:20 +0200617
618 def _connect_elines(self, eline_fwd_links, instance_uuid):
619 """
620 Connect all E-LINE links in the NSD
621 :param eline_fwd_links: list of E-LINE links in the NSD
622 :param: instance_uuid of the service
623 :return:
624 """
625 # cookie is used as identifier for the flowrules installed by the dummygatekeeper
626 # eg. different services get a unique cookie for their flowrules
627 cookie = 1
628 for link in eline_fwd_links:
stevenvanrossemb1018722017-04-06 02:21:20 +0200629 # check if we need to deploy this link when its a management link:
630 if USE_DOCKER_MGMT:
peusterm72f09882018-05-15 17:10:27 +0200631 if self.check_mgmt_interface(
632 link["connection_points_reference"]):
stevenvanrossemb1018722017-04-06 02:21:20 +0200633 continue
634
peusterm72f09882018-05-15 17:10:27 +0200635 src_id, src_if_name, src_sap_id = parse_interface(
636 link["connection_points_reference"][0])
637 dst_id, dst_if_name, dst_sap_id = parse_interface(
638 link["connection_points_reference"][1])
stevenvanrossemce032e12017-04-05 17:31:20 +0200639
640 setChaining = False
stevenvanrossemce032e12017-04-05 17:31:20 +0200641 # check if there is a SAP in the link and chain everything together
642 if src_sap_id in self.saps and dst_sap_id in self.saps:
peusterm72f09882018-05-15 17:10:27 +0200643 LOG.info(
644 '2 SAPs cannot be chained together : {0} - {1}'.format(src_sap_id, dst_sap_id))
stevenvanrossemce032e12017-04-05 17:31:20 +0200645 continue
646
647 elif src_sap_id in self.saps_ext:
648 src_id = src_sap_id
peusterm72f09882018-05-15 17:10:27 +0200649 # set intf name to None so the chaining function will choose
650 # the first one
stevenvanrossem86e64a02017-04-13 02:21:45 +0200651 src_if_name = None
stevenvanrossem29afff52017-05-03 12:39:51 +0200652 dst_vnfi = self._get_vnf_instance(instance_uuid, dst_id)
stevenvanrossemce032e12017-04-05 17:31:20 +0200653 if dst_vnfi is not None:
654 # choose first ip address in sap subnet
655 sap_net = self.saps[src_sap_id]['net']
peusterm72f09882018-05-15 17:10:27 +0200656 sap_ip = "{0}/{1}".format(str(sap_net[2]),
657 sap_net.prefixlen)
658 self._vnf_reconfigure_network(
659 dst_vnfi, dst_if_name, sap_ip)
stevenvanrossemce032e12017-04-05 17:31:20 +0200660 setChaining = True
661
662 elif dst_sap_id in self.saps_ext:
663 dst_id = dst_sap_id
peusterm72f09882018-05-15 17:10:27 +0200664 # set intf name to None so the chaining function will choose
665 # the first one
stevenvanrossem86e64a02017-04-13 02:21:45 +0200666 dst_if_name = None
stevenvanrossem29afff52017-05-03 12:39:51 +0200667 src_vnfi = self._get_vnf_instance(instance_uuid, src_id)
stevenvanrossemce032e12017-04-05 17:31:20 +0200668 if src_vnfi is not None:
669 sap_net = self.saps[dst_sap_id]['net']
peusterm72f09882018-05-15 17:10:27 +0200670 sap_ip = "{0}/{1}".format(str(sap_net[2]),
671 sap_net.prefixlen)
672 self._vnf_reconfigure_network(
673 src_vnfi, src_if_name, sap_ip)
stevenvanrossemce032e12017-04-05 17:31:20 +0200674 setChaining = True
675
676 # Link between 2 VNFs
677 else:
678 # make sure we use the correct sap vnf name
679 if src_sap_id in self.saps_int:
680 src_id = src_sap_id
681 if dst_sap_id in self.saps_int:
682 dst_id = dst_sap_id
peusterm72f09882018-05-15 17:10:27 +0200683 # re-configure the VNFs IP assignment and ensure that a new
684 # subnet is used for each E-Link
stevenvanrossem29afff52017-05-03 12:39:51 +0200685 src_vnfi = self._get_vnf_instance(instance_uuid, src_id)
686 dst_vnfi = self._get_vnf_instance(instance_uuid, dst_id)
stevenvanrossemce032e12017-04-05 17:31:20 +0200687 if src_vnfi is not None and dst_vnfi is not None:
688 eline_net = ELINE_SUBNETS.pop(0)
peusterm72f09882018-05-15 17:10:27 +0200689 ip1 = "{0}/{1}".format(str(eline_net[1]),
690 eline_net.prefixlen)
691 ip2 = "{0}/{1}".format(str(eline_net[2]),
692 eline_net.prefixlen)
stevenvanrossemce032e12017-04-05 17:31:20 +0200693 self._vnf_reconfigure_network(src_vnfi, src_if_name, ip1)
694 self._vnf_reconfigure_network(dst_vnfi, dst_if_name, ip2)
695 setChaining = True
696
697 # Set the chaining
698 if setChaining:
peusterm72f09882018-05-15 17:10:27 +0200699 GK.net.setChain(
stevenvanrossemce032e12017-04-05 17:31:20 +0200700 src_id, dst_id,
701 vnf_src_interface=src_if_name, vnf_dst_interface=dst_if_name,
702 bidirectional=BIDIRECTIONAL_CHAIN, cmd="add-flow", cookie=cookie, priority=10)
703 LOG.debug(
stevenvanrossem29afff52017-05-03 12:39:51 +0200704 "Setting up E-Line link. (%s:%s) -> (%s:%s)" % (
705 src_id, src_if_name, dst_id, dst_if_name))
stevenvanrossemce032e12017-04-05 17:31:20 +0200706
stevenvanrossemce032e12017-04-05 17:31:20 +0200707 def _connect_elans(self, elan_fwd_links, instance_uuid):
708 """
709 Connect all E-LAN links in the NSD
710 :param elan_fwd_links: list of E-LAN links in the NSD
711 :param: instance_uuid of the service
712 :return:
713 """
714 for link in elan_fwd_links:
stevenvanrossemb1018722017-04-06 02:21:20 +0200715 # check if we need to deploy this link when its a management link:
716 if USE_DOCKER_MGMT:
peusterm72f09882018-05-15 17:10:27 +0200717 if self.check_mgmt_interface(
718 link["connection_points_reference"]):
stevenvanrossemb1018722017-04-06 02:21:20 +0200719 continue
stevenvanrossemce032e12017-04-05 17:31:20 +0200720
721 elan_vnf_list = []
peusterm72f09882018-05-15 17:10:27 +0200722 # check if an external SAP is in the E-LAN (then a subnet is
723 # already defined)
stevenvanrossemce032e12017-04-05 17:31:20 +0200724 intfs_elan = [intf for intf in link["connection_points_reference"]]
725 lan_sap = self.check_ext_saps(intfs_elan)
726 if lan_sap:
727 lan_net = self.saps[lan_sap]['net']
728 lan_hosts = list(lan_net.hosts())
stevenvanrossemce032e12017-04-05 17:31:20 +0200729 else:
730 lan_net = ELAN_SUBNETS.pop(0)
731 lan_hosts = list(lan_net.hosts())
732
733 # generate lan ip address for all interfaces except external SAPs
734 for intf in link["connection_points_reference"]:
735
736 # skip external SAPs, they already have an ip
peusterm72f09882018-05-15 17:10:27 +0200737 vnf_id, vnf_interface, vnf_sap_docker_name = parse_interface(
738 intf)
stevenvanrossemce032e12017-04-05 17:31:20 +0200739 if vnf_sap_docker_name in self.saps_ext:
peusterm72f09882018-05-15 17:10:27 +0200740 elan_vnf_list.append(
741 {'name': vnf_sap_docker_name, 'interface': vnf_interface})
stevenvanrossemce032e12017-04-05 17:31:20 +0200742 continue
743
peusterm72f09882018-05-15 17:10:27 +0200744 ip_address = "{0}/{1}".format(str(lan_hosts.pop(0)),
745 lan_net.prefixlen)
stevenvanrossemce032e12017-04-05 17:31:20 +0200746 vnf_id, intf_name, vnf_sap_id = parse_interface(intf)
747
748 # make sure we use the correct sap vnf name
749 src_docker_name = vnf_id
750 if vnf_sap_id in self.saps_int:
751 src_docker_name = vnf_sap_id
752 vnf_id = vnf_sap_id
753
stevenvanrossemce032e12017-04-05 17:31:20 +0200754 LOG.debug(
stevenvanrossemaa9c3c82017-05-03 13:16:31 +0200755 "Setting up E-LAN interface. (%s:%s) -> %s" % (
stevenvanrossem29afff52017-05-03 12:39:51 +0200756 vnf_id, intf_name, ip_address))
stevenvanrossemce032e12017-04-05 17:31:20 +0200757
stevenvanrossemfa91cf22017-05-04 23:45:15 +0200758 # re-configure the VNFs IP assignment and ensure that a new subnet is used for each E-LAN
759 # E-LAN relies on the learning switch capability of Ryu which has to be turned on in the topology
760 # (DCNetwork(controller=RemoteController, enable_learning=True)), so no explicit chaining is necessary.
761 vnfi = self._get_vnf_instance(instance_uuid, vnf_id)
762 if vnfi is not None:
763 self._vnf_reconfigure_network(vnfi, intf_name, ip_address)
764 # add this vnf and interface to the E-LAN for tagging
peusterm72f09882018-05-15 17:10:27 +0200765 elan_vnf_list.append(
766 {'name': src_docker_name, 'interface': intf_name})
stevenvanrossemce032e12017-04-05 17:31:20 +0200767
768 # install the VLAN tags for this E-LAN
769 GK.net.setLAN(elan_vnf_list)
770
peusterm7ec665d2016-03-14 15:20:44 +0100771 def _load_docker_files(self):
772 """
peusterm9d7d4b02016-03-23 19:56:44 +0100773 Get all paths to Dockerfiles from VNFDs and store them in dict.
peusterm7ec665d2016-03-14 15:20:44 +0100774 :return:
775 """
peusterm9d7d4b02016-03-23 19:56:44 +0100776 for k, v in self.vnfds.iteritems():
777 for vu in v.get("virtual_deployment_units"):
778 if vu.get("vm_image_format") == "docker":
779 vm_image = vu.get("vm_image")
peusterm7ec665d2016-03-14 15:20:44 +0100780 docker_path = os.path.join(
781 self.package_content_path,
peusterm9d7d4b02016-03-23 19:56:44 +0100782 make_relative_path(vm_image))
783 self.local_docker_files[k] = docker_path
peusterm56356cb2016-05-03 10:43:43 +0200784 LOG.debug("Found Dockerfile (%r): %r" % (k, docker_path))
peusterm7ec665d2016-03-14 15:20:44 +0100785
peusterm82d406e2016-05-02 20:52:06 +0200786 def _load_docker_urls(self):
787 """
788 Get all URLs to pre-build docker images in some repo.
789 :return:
790 """
peusterm72f09882018-05-15 17:10:27 +0200791 # also merge sap dicts, because internal saps also need a docker
792 # container
stevenvanrossemce032e12017-04-05 17:31:20 +0200793 all_vnfs = self.vnfds.copy()
794 all_vnfs.update(self.saps)
795
796 for k, v in all_vnfs.iteritems():
797 for vu in v.get("virtual_deployment_units", {}):
peusterm82d406e2016-05-02 20:52:06 +0200798 if vu.get("vm_image_format") == "docker":
peusterm35ba4052016-05-02 21:21:14 +0200799 url = vu.get("vm_image")
800 if url is not None:
801 url = url.replace("http://", "")
802 self.remote_docker_image_urls[k] = url
peusterm72f09882018-05-15 17:10:27 +0200803 LOG.debug("Found Docker image URL (%r): %r" %
804 (k, self.remote_docker_image_urls[k]))
peusterm82d406e2016-05-02 20:52:06 +0200805
peustermbdfab7e2016-03-14 16:03:30 +0100806 def _build_images_from_dockerfiles(self):
807 """
808 Build Docker images for each local Dockerfile found in the package: self.local_docker_files
809 """
peusterm398cd3b2016-03-21 15:04:54 +0100810 if GK_STANDALONE_MODE:
811 return # do not build anything in standalone mode
peustermbdfab7e2016-03-14 16:03:30 +0100812 dc = DockerClient()
peusterm72f09882018-05-15 17:10:27 +0200813 LOG.info("Building %d Docker images (this may take several minutes) ..." % len(
814 self.local_docker_files))
peustermbdfab7e2016-03-14 16:03:30 +0100815 for k, v in self.local_docker_files.iteritems():
peusterm72f09882018-05-15 17:10:27 +0200816 for line in dc.build(path=v.replace(
817 "Dockerfile", ""), tag=k, rm=False, nocache=False):
peustermbdfab7e2016-03-14 16:03:30 +0100818 LOG.debug("DOCKER BUILD: %s" % line)
819 LOG.info("Docker image created: %s" % k)
820
peusterm82d406e2016-05-02 20:52:06 +0200821 def _pull_predefined_dockerimages(self):
peustermbdfab7e2016-03-14 16:03:30 +0100822 """
823 If the package contains URLs to pre-build Docker images, we download them with this method.
824 """
peusterm35ba4052016-05-02 21:21:14 +0200825 dc = DockerClient()
826 for url in self.remote_docker_image_urls.itervalues():
peusterm72f09882018-05-15 17:10:27 +0200827 # only pull if not present (speedup for development)
828 if not FORCE_PULL:
stevenvanrossem8a9df3f2017-01-27 22:35:04 +0100829 if len(dc.images.list(name=url)) > 0:
peusterm56356cb2016-05-03 10:43:43 +0200830 LOG.debug("Image %r present. Skipping pull." % url)
831 continue
peusterm35ba4052016-05-02 21:21:14 +0200832 LOG.info("Pulling image: %r" % url)
stevenvanrosseme8d86282017-01-28 00:52:22 +0100833 # this seems to fail with latest docker api version 2.0.2
834 # dc.images.pull(url,
835 # insecure_registry=True)
peusterm72f09882018-05-15 17:10:27 +0200836 # using docker cli instead
stevenvanrosseme8d86282017-01-28 00:52:22 +0100837 cmd = ["docker",
838 "pull",
839 url,
840 ]
841 Popen(cmd).wait()
842
peusterm3444ae42016-03-16 20:46:41 +0100843 def _check_docker_image_exists(self, image_name):
peusterm3f307142016-03-16 21:02:53 +0100844 """
845 Query the docker service and check if the given image exists
846 :param image_name: name of the docker image
847 :return:
848 """
stevenvanrossem8a9df3f2017-01-27 22:35:04 +0100849 return len(DockerClient().images.list(name=image_name)) > 0
peusterm3444ae42016-03-16 20:46:41 +0100850
peusterm082378b2016-03-16 20:14:22 +0100851 def _calculate_placement(self, algorithm):
852 """
853 Do placement by adding the a field "dc" to
854 each VNFD that points to one of our
855 data center objects known to the gatekeeper.
856 """
857 assert(len(self.vnfds) > 0)
858 assert(len(GK.dcs) > 0)
859 # instantiate algorithm an place
860 p = algorithm()
stevenvanrossemce032e12017-04-05 17:31:20 +0200861 p.place(self.nsd, self.vnfds, self.saps, GK.dcs)
peusterm082378b2016-03-16 20:14:22 +0100862 LOG.info("Using placement algorithm: %r" % p.__class__.__name__)
863 # lets print the placement result
864 for name, vnfd in self.vnfds.iteritems():
865 LOG.info("Placed VNF %r on DC %r" % (name, str(vnfd.get("dc"))))
stevenvanrossemce032e12017-04-05 17:31:20 +0200866 for sap in self.saps:
867 sap_dict = self.saps[sap]
868 LOG.info("Placed SAP %r on DC %r" % (sap, str(sap_dict.get("dc"))))
869
edmaas7e084ea2016-11-28 13:50:23 +0100870 def _calculate_cpu_cfs_values(self, cpu_time_percentage):
871 """
872 Calculate cpu period and quota for CFS
873 :param cpu_time_percentage: percentage of overall CPU to be used
874 :return: cpu_period, cpu_quota
875 """
876 if cpu_time_percentage is None:
877 return -1, -1
878 if cpu_time_percentage < 0:
879 return -1, -1
880 # (see: https://www.kernel.org/doc/Documentation/scheduler/sched-bwc.txt)
881 # Attention minimum cpu_quota is 1ms (micro)
882 cpu_period = 1000000 # lets consider a fixed period of 1000000 microseconds for now
peusterm72f09882018-05-15 17:10:27 +0200883 LOG.debug("cpu_period is %r, cpu_percentage is %r" %
884 (cpu_period, cpu_time_percentage))
885 # calculate the fraction of cpu time for this container
886 cpu_quota = cpu_period * cpu_time_percentage
887 # ATTENTION >= 1000 to avoid a invalid argument system error ... no
888 # idea why
edmaas7e084ea2016-11-28 13:50:23 +0100889 if cpu_quota < 1000:
890 LOG.debug("cpu_quota before correcting: %r" % cpu_quota)
891 cpu_quota = 1000
892 LOG.warning("Increased CPU quota to avoid system error.")
peusterm72f09882018-05-15 17:10:27 +0200893 LOG.debug("Calculated: cpu_period=%f / cpu_quota=%f" %
894 (cpu_period, cpu_quota))
edmaas7e084ea2016-11-28 13:50:23 +0100895 return int(cpu_period), int(cpu_quota)
896
stevenvanrossemce032e12017-04-05 17:31:20 +0200897 def check_ext_saps(self, intf_list):
stevenvanrossema58772a2017-04-27 15:10:59 +0200898 # check if the list of interfacs contains an external SAP
peusterm72f09882018-05-15 17:10:27 +0200899 saps_ext = [self.saps[sap]['name']
900 for sap in self.saps if self.saps[sap]["type"] == "external"]
stevenvanrossemce032e12017-04-05 17:31:20 +0200901 for intf_name in intf_list:
peusterm72f09882018-05-15 17:10:27 +0200902 vnf_id, vnf_interface, vnf_sap_docker_name = parse_interface(
903 intf_name)
stevenvanrossemce032e12017-04-05 17:31:20 +0200904 if vnf_sap_docker_name in saps_ext:
905 return vnf_sap_docker_name
peusterm082378b2016-03-16 20:14:22 +0100906
stevenvanrossemb1018722017-04-06 02:21:20 +0200907 def check_mgmt_interface(self, intf_list):
peusterm72f09882018-05-15 17:10:27 +0200908 SAPs_mgmt = [p.get('id') for p in self.nsd["connection_points"]
909 if 'management' in p.get('type')]
stevenvanrossemb1018722017-04-06 02:21:20 +0200910 for intf_name in intf_list:
911 if intf_name in SAPs_mgmt:
912 return True
913
peusterm72f09882018-05-15 17:10:27 +0200914
peusterm082378b2016-03-16 20:14:22 +0100915"""
916Some (simple) placement algorithms
917"""
918
919
920class FirstDcPlacement(object):
921 """
922 Placement: Always use one and the same data center from the GK.dcs dict.
923 """
peusterm72f09882018-05-15 17:10:27 +0200924
stevenvanrossemce032e12017-04-05 17:31:20 +0200925 def place(self, nsd, vnfds, saps, dcs):
stevenvanrossema58772a2017-04-27 15:10:59 +0200926 for id, vnfd in vnfds.iteritems():
peusterm082378b2016-03-16 20:14:22 +0100927 vnfd["dc"] = list(dcs.itervalues())[0]
928
peusterme26487b2016-03-08 14:00:21 +0100929
peustermf6459542016-08-31 19:00:17 +0200930class RoundRobinDcPlacement(object):
931 """
932 Placement: Distribute VNFs across all available DCs in a round robin fashion.
933 """
peusterm72f09882018-05-15 17:10:27 +0200934
stevenvanrossemce032e12017-04-05 17:31:20 +0200935 def place(self, nsd, vnfds, saps, dcs):
peustermf6459542016-08-31 19:00:17 +0200936 c = 0
edmaasd454d542016-09-29 13:19:22 +0200937 dcs_list = list(dcs.itervalues())
stevenvanrossema58772a2017-04-27 15:10:59 +0200938 for id, vnfd in vnfds.iteritems():
peustermf6459542016-08-31 19:00:17 +0200939 vnfd["dc"] = dcs_list[c % len(dcs_list)]
940 c += 1 # inc. c to use next DC
941
peusterm72f09882018-05-15 17:10:27 +0200942
stevenvanrossemce032e12017-04-05 17:31:20 +0200943class RoundRobinDcPlacementWithSAPs(object):
944 """
945 Placement: Distribute VNFs across all available DCs in a round robin fashion,
946 every SAP is instantiated on the same DC as the connected VNF.
947 """
peusterm72f09882018-05-15 17:10:27 +0200948
stevenvanrossemce032e12017-04-05 17:31:20 +0200949 def place(self, nsd, vnfds, saps, dcs):
950
951 # place vnfs
952 c = 0
953 dcs_list = list(dcs.itervalues())
stevenvanrossema58772a2017-04-27 15:10:59 +0200954 for id, vnfd in vnfds.iteritems():
stevenvanrossemce032e12017-04-05 17:31:20 +0200955 vnfd["dc"] = dcs_list[c % len(dcs_list)]
956 c += 1 # inc. c to use next DC
957
958 # place SAPs
959 vlinks = nsd.get("virtual_links", [])
peusterm72f09882018-05-15 17:10:27 +0200960 eline_fwd_links = [l for l in vlinks if (
961 l["connectivity_type"] == "E-Line")]
962 elan_fwd_links = [l for l in vlinks if (
963 l["connectivity_type"] == "E-LAN")]
stevenvanrossemce032e12017-04-05 17:31:20 +0200964
peusterm72f09882018-05-15 17:10:27 +0200965 # SAPs on E-Line links are placed on the same DC as the VNF on the
966 # E-Line
stevenvanrossemce032e12017-04-05 17:31:20 +0200967 for link in eline_fwd_links:
peusterm72f09882018-05-15 17:10:27 +0200968 src_id, src_if_name, src_sap_id = parse_interface(
969 link["connection_points_reference"][0])
970 dst_id, dst_if_name, dst_sap_id = parse_interface(
971 link["connection_points_reference"][1])
stevenvanrossemce032e12017-04-05 17:31:20 +0200972
973 # check if there is a SAP in the link
974 if src_sap_id in saps:
stevenvanrossemce032e12017-04-05 17:31:20 +0200975 # get dc where connected vnf is mapped to
stevenvanrossem29afff52017-05-03 12:39:51 +0200976 dc = vnfds[dst_id]['dc']
stevenvanrossemce032e12017-04-05 17:31:20 +0200977 saps[src_sap_id]['dc'] = dc
978
979 if dst_sap_id in saps:
stevenvanrossemce032e12017-04-05 17:31:20 +0200980 # get dc where connected vnf is mapped to
stevenvanrossem29afff52017-05-03 12:39:51 +0200981 dc = vnfds[src_id]['dc']
stevenvanrossemce032e12017-04-05 17:31:20 +0200982 saps[dst_sap_id]['dc'] = dc
983
984 # SAPs on E-LANs are placed on a random DC
985 dcs_list = list(dcs.itervalues())
986 dc_len = len(dcs_list)
987 for link in elan_fwd_links:
988 for intf in link["connection_points_reference"]:
989 # find SAP interfaces
990 intf_id, intf_name, intf_sap_id = parse_interface(intf)
991 if intf_sap_id in saps:
peusterm72f09882018-05-15 17:10:27 +0200992 dc = dcs_list[randint(0, dc_len - 1)]
stevenvanrossemb1018722017-04-06 02:21:20 +0200993 saps[intf_sap_id]['dc'] = dc
peustermf6459542016-08-31 19:00:17 +0200994
995
peusterme26487b2016-03-08 14:00:21 +0100996"""
997Resource definitions and API endpoints
998"""
999
1000
1001class Packages(fr.Resource):
1002
1003 def post(self):
1004 """
peusterm26455852016-03-08 14:23:53 +01001005 Upload a *.son service package to the dummy gatekeeper.
1006
peusterme26487b2016-03-08 14:00:21 +01001007 We expect request with a *.son file and store it in UPLOAD_FOLDER
peusterm26455852016-03-08 14:23:53 +01001008 :return: UUID
peusterme26487b2016-03-08 14:00:21 +01001009 """
1010 try:
1011 # get file contents
peustermec5cefe2017-02-09 11:15:14 +01001012 LOG.info("POST /packages called")
peusterm593ca582016-03-30 19:55:01 +02001013 # lets search for the package in the request
peustermec5cefe2017-02-09 11:15:14 +01001014 is_file_object = False # make API more robust: file can be in data or in files field
peusterm593ca582016-03-30 19:55:01 +02001015 if "package" in request.files:
1016 son_file = request.files["package"]
peustermec5cefe2017-02-09 11:15:14 +01001017 is_file_object = True
1018 elif len(request.data) > 0:
1019 son_file = request.data
peusterm593ca582016-03-30 19:55:01 +02001020 else:
peusterm72f09882018-05-15 17:10:27 +02001021 return {"service_uuid": None, "size": 0, "sha1": None,
1022 "error": "upload failed. file not found."}, 500
peusterme26487b2016-03-08 14:00:21 +01001023 # generate a uuid to reference this package
1024 service_uuid = str(uuid.uuid4())
peusterm786cd542016-03-14 14:12:17 +01001025 file_hash = hashlib.sha1(str(son_file)).hexdigest()
peusterme26487b2016-03-08 14:00:21 +01001026 # ensure that upload folder exists
1027 ensure_dir(UPLOAD_FOLDER)
1028 upload_path = os.path.join(UPLOAD_FOLDER, "%s.son" % service_uuid)
1029 # store *.son file to disk
peustermec5cefe2017-02-09 11:15:14 +01001030 if is_file_object:
1031 son_file.save(upload_path)
1032 else:
1033 with open(upload_path, 'wb') as f:
1034 f.write(son_file)
peusterme26487b2016-03-08 14:00:21 +01001035 size = os.path.getsize(upload_path)
stevenvanrossem301d2d32017-04-17 21:22:10 +02001036
1037 # first stop and delete any other running services
1038 if AUTO_DELETE:
stevenvanrossem00e65b92017-04-18 16:57:40 +02001039 service_list = copy.copy(GK.services)
1040 for service_uuid in service_list:
peusterm72f09882018-05-15 17:10:27 +02001041 instances_list = copy.copy(
1042 GK.services[service_uuid].instances)
stevenvanrossem00e65b92017-04-18 16:57:40 +02001043 for instance_uuid in instances_list:
stevenvanrossem301d2d32017-04-17 21:22:10 +02001044 # valid service and instance UUID, stop service
peusterm72f09882018-05-15 17:10:27 +02001045 GK.services.get(service_uuid).stop_service(
1046 instance_uuid)
1047 LOG.info("service instance with uuid %r stopped." %
1048 instance_uuid)
stevenvanrossem301d2d32017-04-17 21:22:10 +02001049
peusterm786cd542016-03-14 14:12:17 +01001050 # create a service object and register it
1051 s = Service(service_uuid, file_hash, upload_path)
1052 GK.register_service_package(service_uuid, s)
stevenvanrossem4378f162017-04-14 16:09:21 +02001053
1054 # automatically deploy the service
1055 if AUTO_DEPLOY:
1056 # ok, we have a service uuid, lets start the service
stevenvanrossem85d749c2017-04-22 21:47:15 +02001057 reset_subnets()
peusterm72f09882018-05-15 17:10:27 +02001058 GK.services.get(service_uuid).start_service()
stevenvanrossem4378f162017-04-14 16:09:21 +02001059
peusterme26487b2016-03-08 14:00:21 +01001060 # generate the JSON result
peusterm72f09882018-05-15 17:10:27 +02001061 return {"service_uuid": service_uuid, "size": size,
1062 "sha1": file_hash, "error": None}, 201
1063 except BaseException:
peusterm786cd542016-03-14 14:12:17 +01001064 LOG.exception("Service package upload failed:")
peusterm72f09882018-05-15 17:10:27 +02001065 return {"service_uuid": None, "size": 0,
1066 "sha1": None, "error": "upload failed"}, 500
peusterme26487b2016-03-08 14:00:21 +01001067
1068 def get(self):
peusterm26455852016-03-08 14:23:53 +01001069 """
1070 Return a list of UUID's of uploaded service packages.
1071 :return: dict/list
1072 """
peusterm075b46a2016-07-20 17:08:00 +02001073 LOG.info("GET /packages")
peusterm786cd542016-03-14 14:12:17 +01001074 return {"service_uuid_list": list(GK.services.iterkeys())}
peusterme26487b2016-03-08 14:00:21 +01001075
1076
1077class Instantiations(fr.Resource):
1078
1079 def post(self):
peusterm26455852016-03-08 14:23:53 +01001080 """
1081 Instantiate a service specified by its UUID.
1082 Will return a new UUID to identify the running service instance.
1083 :return: UUID
1084 """
edmaasd1626e52017-04-02 16:21:57 +02001085 LOG.info("POST /instantiations (or /requests) called")
peusterm64b45502016-03-16 21:15:14 +01001086 # try to extract the service uuid from the request
peusterm26455852016-03-08 14:23:53 +01001087 json_data = request.get_json(force=True)
peusterm64b45502016-03-16 21:15:14 +01001088 service_uuid = json_data.get("service_uuid")
1089
1090 # lets be a bit fuzzy here to make testing easier
peusterm72f09882018-05-15 17:10:27 +02001091 if (service_uuid is None or service_uuid ==
1092 "latest") and len(GK.services) > 0:
1093 # if we don't get a service uuid, we simple start the first service
1094 # in the list
peusterm64b45502016-03-16 21:15:14 +01001095 service_uuid = list(GK.services.iterkeys())[0]
peustermbea87372016-03-16 19:37:35 +01001096 if service_uuid in GK.services:
peusterm64b45502016-03-16 21:15:14 +01001097 # ok, we have a service uuid, lets start the service
peusterm72f09882018-05-15 17:10:27 +02001098 service_instance_uuid = GK.services.get(
1099 service_uuid).start_service()
edmaas59b28fc2016-11-01 17:11:47 +01001100 return {"service_instance_uuid": service_instance_uuid}, 201
peustermbea87372016-03-16 19:37:35 +01001101 return "Service not found", 404
peusterme26487b2016-03-08 14:00:21 +01001102
1103 def get(self):
peusterm26455852016-03-08 14:23:53 +01001104 """
1105 Returns a list of UUIDs containing all running services.
1106 :return: dict / list
1107 """
peusterm075b46a2016-07-20 17:08:00 +02001108 LOG.info("GET /instantiations")
1109 return {"service_instantiations_list": [
peusterm64b45502016-03-16 21:15:14 +01001110 list(s.instances.iterkeys()) for s in GK.services.itervalues()]}
peusterm786cd542016-03-14 14:12:17 +01001111
edmaasd454d542016-09-29 13:19:22 +02001112 def delete(self):
1113 """
edmaas74d72492016-10-05 19:59:22 +02001114 Stops a running service specified by its service and instance UUID.
edmaasd454d542016-09-29 13:19:22 +02001115 """
edmaas74d72492016-10-05 19:59:22 +02001116 # try to extract the service and instance UUID from the request
edmaasd454d542016-09-29 13:19:22 +02001117 json_data = request.get_json(force=True)
1118 service_uuid = json_data.get("service_uuid")
edmaas59b28fc2016-11-01 17:11:47 +01001119 instance_uuid = json_data.get("service_instance_uuid")
edmaas9c4fd112016-10-05 19:45:57 +02001120
1121 # try to be fuzzy
1122 if service_uuid is None and len(GK.services) > 0:
peusterm72f09882018-05-15 17:10:27 +02001123 # if we don't get a service uuid, we simply stop the last service
1124 # in the list
edmaas9c4fd112016-10-05 19:45:57 +02001125 service_uuid = list(GK.services.iterkeys())[0]
peusterm72f09882018-05-15 17:10:27 +02001126 if instance_uuid is None and len(
1127 GK.services[service_uuid].instances) > 0:
1128 instance_uuid = list(
1129 GK.services[service_uuid].instances.iterkeys())[0]
edmaasd454d542016-09-29 13:19:22 +02001130
edmaas74d72492016-10-05 19:59:22 +02001131 if service_uuid in GK.services and instance_uuid in GK.services[service_uuid].instances:
1132 # valid service and instance UUID, stop service
edmaas9c4fd112016-10-05 19:45:57 +02001133 GK.services.get(service_uuid).stop_service(instance_uuid)
peusterm72f09882018-05-15 17:10:27 +02001134 return "service instance with uuid %r stopped." % instance_uuid, 200
edmaasd454d542016-09-29 13:19:22 +02001135 return "Service not found", 404
1136
peusterm72f09882018-05-15 17:10:27 +02001137
edmaas74d72492016-10-05 19:59:22 +02001138class Exit(fr.Resource):
edmaas9c4fd112016-10-05 19:45:57 +02001139
1140 def put(self):
1141 """
1142 Stop the running Containernet instance regardless of data transmitted
1143 """
edmaasf5d0cbe2016-12-11 15:12:26 +01001144 list(GK.dcs.values())[0].net.stop()
edmaas59b28fc2016-11-01 17:11:47 +01001145
1146
1147def initialize_GK():
1148 global GK
1149 GK = Gatekeeper()
1150
edmaas9c4fd112016-10-05 19:45:57 +02001151
peusterme26487b2016-03-08 14:00:21 +01001152# create a single, global GK object
edmaas59b28fc2016-11-01 17:11:47 +01001153GK = None
1154initialize_GK()
peusterme26487b2016-03-08 14:00:21 +01001155# setup Flask
1156app = Flask(__name__)
1157app.config['MAX_CONTENT_LENGTH'] = 512 * 1024 * 1024 # 512 MB max upload
1158api = fr.Api(app)
1159# define endpoints
peustermec5cefe2017-02-09 11:15:14 +01001160api.add_resource(Packages, '/packages', '/api/v2/packages')
peusterm72f09882018-05-15 17:10:27 +02001161api.add_resource(Instantiations, '/instantiations',
1162 '/api/v2/instantiations', '/api/v2/requests')
edmaas74d72492016-10-05 19:59:22 +02001163api.add_resource(Exit, '/emulator/exit')
peusterme26487b2016-03-08 14:00:21 +01001164
1165
peusterm082378b2016-03-16 20:14:22 +01001166def start_rest_api(host, port, datacenters=dict()):
peustermbea87372016-03-16 19:37:35 +01001167 GK.dcs = datacenters
stevenvanrossembecc7c52016-11-07 05:52:01 +01001168 GK.net = get_dc_network()
peusterme26487b2016-03-08 14:00:21 +01001169 # start the Flask server (not the best performance but ok for our use case)
1170 app.run(host=host,
1171 port=port,
1172 debug=True,
1173 use_reloader=False # this is needed to run Flask in a non-main thread
1174 )
1175
1176
1177def ensure_dir(name):
1178 if not os.path.exists(name):
peusterm7ec665d2016-03-14 15:20:44 +01001179 os.makedirs(name)
1180
1181
1182def load_yaml(path):
1183 with open(path, "r") as f:
1184 try:
1185 r = yaml.load(f)
1186 except yaml.YAMLError as exc:
peusterm72f09882018-05-15 17:10:27 +02001187 LOG.exception("YAML parse error: %r" % str(exc))
peusterm7ec665d2016-03-14 15:20:44 +01001188 r = dict()
1189 return r
1190
1191
1192def make_relative_path(path):
peusterm9d7d4b02016-03-23 19:56:44 +01001193 if path.startswith("file://"):
1194 path = path.replace("file://", "", 1)
peusterm7ec665d2016-03-14 15:20:44 +01001195 if path.startswith("/"):
peusterm9d7d4b02016-03-23 19:56:44 +01001196 path = path.replace("/", "", 1)
peusterm7ec665d2016-03-14 15:20:44 +01001197 return path
1198
1199
stevenvanrossembecc7c52016-11-07 05:52:01 +01001200def get_dc_network():
1201 """
1202 retrieve the DCnetwork where this dummygatekeeper (GK) connects to.
1203 Assume at least 1 datacenter is connected to this GK, and that all datacenters belong to the same DCNetwork
1204 :return:
1205 """
1206 assert (len(GK.dcs) > 0)
1207 return GK.dcs.values()[0].net
peusterm6b5224d2016-07-20 13:20:31 +02001208
stevenvanrossemce032e12017-04-05 17:31:20 +02001209
1210def parse_interface(interface_name):
1211 """
1212 convert the interface name in the nsd to the according vnf_id, vnf_interface names
1213 :param interface_name:
1214 :return:
1215 """
1216
1217 if ':' in interface_name:
1218 vnf_id, vnf_interface = interface_name.split(':')
1219 vnf_sap_docker_name = interface_name.replace(':', '_')
1220 else:
1221 vnf_id = interface_name
1222 vnf_interface = interface_name
1223 vnf_sap_docker_name = interface_name
1224
1225 return vnf_id, vnf_interface, vnf_sap_docker_name
1226
peusterm72f09882018-05-15 17:10:27 +02001227
stevenvanrossem85d749c2017-04-22 21:47:15 +02001228def reset_subnets():
1229 # private subnet definitions for the generated interfaces
1230 # 10.10.xxx.0/24
1231 global SAP_SUBNETS
1232 SAP_SUBNETS = generate_subnets('10.10', 0, subnet_size=50, mask=30)
1233 # 10.20.xxx.0/30
1234 global ELAN_SUBNETS
1235 ELAN_SUBNETS = generate_subnets('10.20', 0, subnet_size=50, mask=24)
1236 # 10.30.xxx.0/30
1237 global ELINE_SUBNETS
1238 ELINE_SUBNETS = generate_subnets('10.30', 0, subnet_size=50, mask=30)
1239
peusterm72f09882018-05-15 17:10:27 +02001240
peusterme26487b2016-03-08 14:00:21 +01001241if __name__ == '__main__':
1242 """
1243 Lets allow to run the API in standalone mode.
1244 """
peusterm398cd3b2016-03-21 15:04:54 +01001245 GK_STANDALONE_MODE = True
peusterme26487b2016-03-08 14:00:21 +01001246 logging.getLogger("werkzeug").setLevel(logging.INFO)
1247 start_rest_api("0.0.0.0", 8000)