blob: 136ccc83aaf9e3109b3399afa5c23bfadf1a9a4d [file] [log] [blame]
peusterme26487b2016-03-08 14:00:21 +01001"""
peusterm79ef6ae2016-07-08 13:53:57 +02002Copyright (c) 2015 SONATA-NFV and Paderborn University
3ALL RIGHTS RESERVED.
4
5Licensed under the Apache License, Version 2.0 (the "License");
6you may not use this file except in compliance with the License.
7You may obtain a copy of the License at
8
9 http://www.apache.org/licenses/LICENSE-2.0
10
11Unless required by applicable law or agreed to in writing, software
12distributed under the License is distributed on an "AS IS" BASIS,
13WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14See the License for the specific language governing permissions and
15limitations under the License.
16
17Neither the name of the SONATA-NFV [, ANY ADDITIONAL AFFILIATION]
18nor the names of its contributors may be used to endorse or promote
19products derived from this software without specific prior written
20permission.
21
22This work has been performed in the framework of the SONATA project,
23funded by the European Commission under Grant number 671517 through
24the Horizon 2020 and 5G-PPP programmes. The authors would like to
25acknowledge the contributions of their colleagues of the SONATA
26partner consortium (www.sonata-nfv.eu).
27"""
28"""
peusterme26487b2016-03-08 14:00:21 +010029This module implements a simple REST API that behaves like SONATA's gatekeeper.
30
31It is only used to support the development of SONATA's SDK tools and to demonstrate
32the year 1 version of the emulator until the integration with WP4's orchestrator is done.
33"""
34
35import logging
36import os
37import uuid
38import hashlib
peusterm786cd542016-03-14 14:12:17 +010039import zipfile
peusterm7ec665d2016-03-14 15:20:44 +010040import yaml
peusterme66edf72016-08-23 11:11:12 +020041import threading
stevenvanrosseme8d86282017-01-28 00:52:22 +010042from docker import DockerClient, APIClient
peusterme26487b2016-03-08 14:00:21 +010043from flask import Flask, request
44import flask_restful as fr
wtaverni5b23b662016-06-20 12:26:21 +020045from collections import defaultdict
stevenvanrossemdb2f9432016-08-20 00:01:11 +020046import pkg_resources
stevenvanrosseme8d86282017-01-28 00:52:22 +010047from subprocess import Popen
stevenvanrossemce032e12017-04-05 17:31:20 +020048from random import randint
49import ipaddress
stevenvanrossem00e65b92017-04-18 16:57:40 +020050import copy
peusterme26487b2016-03-08 14:00:21 +010051
peusterm398cd3b2016-03-21 15:04:54 +010052logging.basicConfig()
peusterm786cd542016-03-14 14:12:17 +010053LOG = logging.getLogger("sonata-dummy-gatekeeper")
54LOG.setLevel(logging.DEBUG)
peusterme26487b2016-03-08 14:00:21 +010055logging.getLogger("werkzeug").setLevel(logging.WARNING)
56
peusterm92237dc2016-03-21 15:45:58 +010057GK_STORAGE = "/tmp/son-dummy-gk/"
58UPLOAD_FOLDER = os.path.join(GK_STORAGE, "uploads/")
59CATALOG_FOLDER = os.path.join(GK_STORAGE, "catalog/")
peusterme26487b2016-03-08 14:00:21 +010060
peusterm82d406e2016-05-02 20:52:06 +020061# Enable Dockerfile build functionality
62BUILD_DOCKERFILE = False
63
peusterm398cd3b2016-03-21 15:04:54 +010064# flag to indicate that we run without the emulator (only the bare API for integration testing)
65GK_STANDALONE_MODE = False
66
peusterm56356cb2016-05-03 10:43:43 +020067# should a new version of an image be pulled even if its available
wtaverni5b23b662016-06-20 12:26:21 +020068FORCE_PULL = False
peusterme26487b2016-03-08 14:00:21 +010069
stevenvanrossemdb2f9432016-08-20 00:01:11 +020070# Automatically deploy SAPs (endpoints) of the service as new containers
peustermb1cf5372016-08-23 14:02:09 +020071# Attention: This is not a configuration switch but a global variable! Don't change its default value.
stevenvanrossemdb2f9432016-08-20 00:01:11 +020072DEPLOY_SAP = False
73
peusterm76eb8652016-09-06 11:07:16 +020074# flag to indicate if we use bidirectional forwarding rules in the automatic chaining process
75BIDIRECTIONAL_CHAIN = False
76
stevenvanrossemb1018722017-04-06 02:21:20 +020077# override the management interfaces in the descriptors with default docker0 interfaces in the containers
stevenvanrossem4378f162017-04-14 16:09:21 +020078USE_DOCKER_MGMT = False
79
80# automatically deploy uploaded packages (no need to execute son-access deploy --latest separately)
stevenvanrossem15013852017-04-14 16:25:12 +020081AUTO_DEPLOY = False
stevenvanrossemce032e12017-04-05 17:31:20 +020082
stevenvanrossem301d2d32017-04-17 21:22:10 +020083# and also automatically terminate any other running services
84AUTO_DELETE = False
85
stevenvanrossemce032e12017-04-05 17:31:20 +020086def generate_subnets(prefix, base, subnet_size=50, mask=24):
87 # Generate a list of ipaddress in subnets
88 r = list()
89 for net in range(base, base + subnet_size):
90 subnet = "{0}.{1}.0/{2}".format(prefix, net, mask)
91 r.append(ipaddress.ip_network(unicode(subnet)))
92 return r
93# private subnet definitions for the generated interfaces
stevenvanrossemb1018722017-04-06 02:21:20 +020094# 10.10.xxx.0/24
stevenvanrossem86e64a02017-04-13 02:21:45 +020095SAP_SUBNETS = generate_subnets('10.10', 0, subnet_size=50, mask=30)
96# 10.20.xxx.0/30
stevenvanrossemce032e12017-04-05 17:31:20 +020097ELAN_SUBNETS = generate_subnets('10.20', 0, subnet_size=50, mask=24)
stevenvanrossemb1018722017-04-06 02:21:20 +020098# 10.30.xxx.0/30
stevenvanrossemce032e12017-04-05 17:31:20 +020099ELINE_SUBNETS = generate_subnets('10.30', 0, subnet_size=50, mask=30)
100
stevenvanrossemc6ace2d2017-04-21 13:47:06 +0200101# path to the VNFD for the SAP VNF that is deployed as internal SAP point
102SAP_VNFD=None
stevenvanrossemce032e12017-04-05 17:31:20 +0200103
peusterme26487b2016-03-08 14:00:21 +0100104class Gatekeeper(object):
105
106 def __init__(self):
peusterm786cd542016-03-14 14:12:17 +0100107 self.services = dict()
peusterm082378b2016-03-16 20:14:22 +0100108 self.dcs = dict()
stevenvanrossembecc7c52016-11-07 05:52:01 +0100109 self.net = None
peusterm3444ae42016-03-16 20:46:41 +0100110 self.vnf_counter = 0 # used to generate short names for VNFs (Mininet limitation)
peusterm786cd542016-03-14 14:12:17 +0100111 LOG.info("Create SONATA dummy gatekeeper.")
peusterme26487b2016-03-08 14:00:21 +0100112
peusterm786cd542016-03-14 14:12:17 +0100113 def register_service_package(self, service_uuid, service):
114 """
115 register new service package
116 :param service_uuid
117 :param service object
118 """
119 self.services[service_uuid] = service
120 # lets perform all steps needed to onboard the service
121 service.onboard()
122
peusterm3444ae42016-03-16 20:46:41 +0100123 def get_next_vnf_name(self):
124 self.vnf_counter += 1
peusterm398cd3b2016-03-21 15:04:54 +0100125 return "vnf%d" % self.vnf_counter
peusterm3444ae42016-03-16 20:46:41 +0100126
peusterm786cd542016-03-14 14:12:17 +0100127
128class Service(object):
129 """
130 This class represents a NS uploaded as a *.son package to the
131 dummy gatekeeper.
132 Can have multiple running instances of this service.
133 """
134
135 def __init__(self,
136 service_uuid,
137 package_file_hash,
138 package_file_path):
139 self.uuid = service_uuid
140 self.package_file_hash = package_file_hash
141 self.package_file_path = package_file_path
142 self.package_content_path = os.path.join(CATALOG_FOLDER, "services/%s" % self.uuid)
peusterm7ec665d2016-03-14 15:20:44 +0100143 self.manifest = None
144 self.nsd = None
145 self.vnfds = dict()
stevenvanrossemce032e12017-04-05 17:31:20 +0200146 self.saps = dict()
147 self.saps_ext = list()
148 self.saps_int = list()
peustermbdfab7e2016-03-14 16:03:30 +0100149 self.local_docker_files = dict()
peusterm82d406e2016-05-02 20:52:06 +0200150 self.remote_docker_image_urls = dict()
peusterm786cd542016-03-14 14:12:17 +0100151 self.instances = dict()
stevenvanrossem29afff52017-05-03 12:39:51 +0200152 #self.vnf_name2docker_name = dict()
153 # dict to find the vnf_name for any vnf id
stevenvanrossemce032e12017-04-05 17:31:20 +0200154 self.vnf_id2vnf_name = dict()
peusterme26487b2016-03-08 14:00:21 +0100155
peusterm786cd542016-03-14 14:12:17 +0100156 def onboard(self):
157 """
158 Do all steps to prepare this service to be instantiated
159 :return:
160 """
161 # 1. extract the contents of the package and store them in our catalog
162 self._unpack_service_package()
163 # 2. read in all descriptor files
peusterm7ec665d2016-03-14 15:20:44 +0100164 self._load_package_descriptor()
165 self._load_nsd()
166 self._load_vnfd()
stevenvanrossemdb2f9432016-08-20 00:01:11 +0200167 if DEPLOY_SAP:
168 self._load_saps()
peusterm786cd542016-03-14 14:12:17 +0100169 # 3. prepare container images (e.g. download or build Dockerfile)
peusterm82d406e2016-05-02 20:52:06 +0200170 if BUILD_DOCKERFILE:
171 self._load_docker_files()
172 self._build_images_from_dockerfiles()
173 else:
174 self._load_docker_urls()
175 self._pull_predefined_dockerimages()
peusterm3bb86bf2016-08-15 09:47:57 +0200176 LOG.info("On-boarded service: %r" % self.manifest.get("name"))
peusterm7ec665d2016-03-14 15:20:44 +0100177
peusterm082378b2016-03-16 20:14:22 +0100178 def start_service(self):
peusterm3444ae42016-03-16 20:46:41 +0100179 """
180 This methods creates and starts a new service instance.
181 It computes placements, iterates over all VNFDs, and starts
182 each VNFD as a Docker container in the data center selected
183 by the placement algorithm.
184 :return:
185 """
186 LOG.info("Starting service %r" % self.uuid)
stevenvanrossemd87fe472016-05-11 11:34:34 +0200187
peusterm3444ae42016-03-16 20:46:41 +0100188 # 1. each service instance gets a new uuid to identify it
peusterm082378b2016-03-16 20:14:22 +0100189 instance_uuid = str(uuid.uuid4())
peusterm3444ae42016-03-16 20:46:41 +0100190 # build a instances dict (a bit like a NSR :))
191 self.instances[instance_uuid] = dict()
192 self.instances[instance_uuid]["vnf_instances"] = list()
stevenvanrossemd87fe472016-05-11 11:34:34 +0200193
stevenvanrossemce032e12017-04-05 17:31:20 +0200194 # 2. compute placement of this service instance (adds DC names to VNFDs)
peusterm398cd3b2016-03-21 15:04:54 +0100195 if not GK_STANDALONE_MODE:
peustermf6459542016-08-31 19:00:17 +0200196 #self._calculate_placement(FirstDcPlacement)
stevenvanrossemce032e12017-04-05 17:31:20 +0200197 self._calculate_placement(RoundRobinDcPlacementWithSAPs)
stevenvanrossemce032e12017-04-05 17:31:20 +0200198 # 3. start all vnfds that we have in the service (except SAPs)
stevenvanrossem29afff52017-05-03 12:39:51 +0200199 for vnf_id in self.vnf_id2vnf_name:
200 vnf_name = self.vnf_id2vnf_name[vnf_id]
201 vnfd = self.vnfds[vnf_name]
peusterm398cd3b2016-03-21 15:04:54 +0100202 vnfi = None
203 if not GK_STANDALONE_MODE:
stevenvanrossem29afff52017-05-03 12:39:51 +0200204 vnfi = self._start_vnfd(vnfd, vnf_id)
peusterm398cd3b2016-03-21 15:04:54 +0100205 self.instances[instance_uuid]["vnf_instances"].append(vnfi)
stevenvanrossemd87fe472016-05-11 11:34:34 +0200206
stevenvanrossemce032e12017-04-05 17:31:20 +0200207 # 4. start all SAPs in the service
208 for sap in self.saps:
209 self._start_sap(self.saps[sap], instance_uuid)
210
211 # 5. Deploy E-Line and E_LAN links
edmaasf5d0cbe2016-12-11 15:12:26 +0100212 if "virtual_links" in self.nsd:
213 vlinks = self.nsd["virtual_links"]
stevenvanrossemce032e12017-04-05 17:31:20 +0200214 # constituent virtual links are not checked
215 #fwd_links = self.nsd["forwarding_graphs"][0]["constituent_virtual_links"]
216 eline_fwd_links = [l for l in vlinks if (l["connectivity_type"] == "E-Line")]
217 elan_fwd_links = [l for l in vlinks if (l["connectivity_type"] == "E-LAN")]
stevenvanrossemd87fe472016-05-11 11:34:34 +0200218
stevenvanrossem9cc73602017-01-27 23:37:29 +0100219 GK.net.deployed_elines.extend(eline_fwd_links)
220 GK.net.deployed_elans.extend(elan_fwd_links)
stevenvanrossembecc7c52016-11-07 05:52:01 +0100221
stevenvanrossemce032e12017-04-05 17:31:20 +0200222 # 5a. deploy E-Line links
223 self._connect_elines(eline_fwd_links, instance_uuid)
stevenvanrossemd87fe472016-05-11 11:34:34 +0200224
stevenvanrossemce032e12017-04-05 17:31:20 +0200225 # 5b. deploy E-LAN links
226 self._connect_elans(elan_fwd_links, instance_uuid)
stevenvanrossemdb2f9432016-08-20 00:01:11 +0200227
stevenvanrossemce032e12017-04-05 17:31:20 +0200228 # 6. run the emulator specific entrypoint scripts in the VNFIs of this service instance
peusterm8484b902016-06-21 09:03:35 +0200229 self._trigger_emulator_start_scripts_in_vnfis(self.instances[instance_uuid]["vnf_instances"])
230
peusterm3444ae42016-03-16 20:46:41 +0100231 LOG.info("Service started. Instance id: %r" % instance_uuid)
peusterm082378b2016-03-16 20:14:22 +0100232 return instance_uuid
233
edmaas9c4fd112016-10-05 19:45:57 +0200234 def stop_service(self, instance_uuid):
edmaasd454d542016-09-29 13:19:22 +0200235 """
236 This method stops a running service instance.
edmaas74d72492016-10-05 19:59:22 +0200237 It iterates over all VNF instances, stopping them each
edmaasd454d542016-09-29 13:19:22 +0200238 and removing them from their data center.
239
edmaas74d72492016-10-05 19:59:22 +0200240 :param instance_uuid: the uuid of the service instance to be stopped
edmaasd454d542016-09-29 13:19:22 +0200241 """
edmaas9c4fd112016-10-05 19:45:57 +0200242 LOG.info("Stopping service %r" % self.uuid)
243 # get relevant information
244 # instance_uuid = str(self.uuid.uuid4())
245 vnf_instances = self.instances[instance_uuid]["vnf_instances"]
246
247 for v in vnf_instances:
edmaas74d72492016-10-05 19:59:22 +0200248 self._stop_vnfi(v)
edmaas9c4fd112016-10-05 19:45:57 +0200249
stevenvanrossem00e65b92017-04-18 16:57:40 +0200250 for sap_name in self.saps_ext:
251 ext_sap = self.saps[sap_name]
252 target_dc = ext_sap.get("dc")
253 target_dc.removeExternalSAP(sap_name, ext_sap['net'])
254 LOG.info("Stopping the SAP instance: %r in DC %r" % (sap_name, target_dc))
255
edmaas9c4fd112016-10-05 19:45:57 +0200256 if not GK_STANDALONE_MODE:
257 # remove placement?
258 # self._remove_placement(RoundRobinPlacement)
259 None
260
261 # last step: remove the instance from the list of all instances
262 del self.instances[instance_uuid]
edmaasd454d542016-09-29 13:19:22 +0200263
stevenvanrossem29afff52017-05-03 12:39:51 +0200264 def _start_vnfd(self, vnfd, vnf_id):
peusterm398cd3b2016-03-21 15:04:54 +0100265 """
266 Start a single VNFD of this service
267 :param vnfd: vnfd descriptor dict
stevenvanrossem29afff52017-05-03 12:39:51 +0200268 :param vnf-id: vnfd descriptor dict
peusterm398cd3b2016-03-21 15:04:54 +0100269 :return:
270 """
stevenvanrossem29afff52017-05-03 12:39:51 +0200271 # the vnf_name refers to the container to be deployed
272 vnf_name = vnfd.get("name")
273
274
peusterm398cd3b2016-03-21 15:04:54 +0100275 # iterate over all deployment units within each VNFDs
276 for u in vnfd.get("virtual_deployment_units"):
277 # 1. get the name of the docker image to start and the assigned DC
peusterm56356cb2016-05-03 10:43:43 +0200278 if vnf_name not in self.remote_docker_image_urls:
279 raise Exception("No image name for %r found. Abort." % vnf_name)
280 docker_name = self.remote_docker_image_urls.get(vnf_name)
peusterm398cd3b2016-03-21 15:04:54 +0100281 target_dc = vnfd.get("dc")
282 # 2. perform some checks to ensure we can start the container
283 assert(docker_name is not None)
284 assert(target_dc is not None)
285 if not self._check_docker_image_exists(docker_name):
286 raise Exception("Docker image %r not found. Abort." % docker_name)
edmaas7e084ea2016-11-28 13:50:23 +0100287
288 # 3. get the resource limits
289 res_req = u.get("resource_requirements")
290 cpu_list = res_req.get("cpu").get("cores")
291 if not cpu_list or len(cpu_list)==0:
292 cpu_list="1"
293 cpu_bw = res_req.get("cpu").get("cpu_bw")
294 if not cpu_bw:
295 cpu_bw=1
296 mem_num = str(res_req.get("memory").get("size"))
297 if len(mem_num)==0:
298 mem_num="2"
299 mem_unit = str(res_req.get("memory").get("size_unit"))
300 if str(mem_unit)==0:
301 mem_unit="GB"
302 mem_limit = float(mem_num)
303 if mem_unit=="GB":
304 mem_limit=mem_limit*1024*1024*1024
305 elif mem_unit=="MB":
306 mem_limit=mem_limit*1024*1024
307 elif mem_unit=="KB":
308 mem_limit=mem_limit*1024
309 mem_lim = int(mem_limit)
310 cpu_period, cpu_quota = self._calculate_cpu_cfs_values(float(cpu_bw))
311
stevenvanrossem29afff52017-05-03 12:39:51 +0200312
313 # vnf_name2id = defaultdict(lambda: "NotExistingNode",
314 # reduce(lambda x, y: dict(x, **y),
315 # map(lambda d: {d["vnf_name"]: d["vnf_id"]},
316 # self.nsd["network_functions"])))
317
318 # vnf_id2name = defaultdict(lambda: "NotExistingNode",
319 # reduce(lambda x, y: dict(x, **y),
320 # map(lambda d: {d["vnf_id"]: d["vnf_name"]},
321 # self.nsd["network_functions"])))
stevenvanrossemb1018722017-04-06 02:21:20 +0200322
323 # check if we need to deploy the management ports (defined as type:management both on in the vnfd and nsd)
324 intfs = vnfd.get("connection_points", [])
stevenvanrossem56749672017-04-06 14:44:33 +0200325 mgmt_intf_names = []
stevenvanrossemb1018722017-04-06 02:21:20 +0200326 if USE_DOCKER_MGMT:
stevenvanrossem29afff52017-05-03 12:39:51 +0200327 #vnf_id = vnf_name2id[vnf_name]
stevenvanrossemb1018722017-04-06 02:21:20 +0200328 mgmt_intfs = [vnf_id + ':' + intf['id'] for intf in intfs if intf.get('type') == 'management']
329 # check if any of these management interfaces are used in a management-type network in the nsd
330 for nsd_intf_name in mgmt_intfs:
331 vlinks = [ l["connection_points_reference"] for l in self.nsd.get("virtual_links", [])]
332 for link in vlinks:
333 if nsd_intf_name in link and self.check_mgmt_interface(link):
334 # this is indeed a management interface and can be skipped
335 vnf_id, vnf_interface, vnf_sap_docker_name = parse_interface(nsd_intf_name)
336 found_interfaces = [intf for intf in intfs if intf.get('id') == vnf_interface]
337 intfs.remove(found_interfaces[0])
stevenvanrossem56749672017-04-06 14:44:33 +0200338 mgmt_intf_names.append(vnf_interface)
stevenvanrossemb1018722017-04-06 02:21:20 +0200339
edmaas8d4290a2017-03-27 13:56:59 +0200340 # 4. generate the volume paths for the docker container
341 volumes=list()
342 # a volume to extract log files
edmaas8d4290a2017-03-27 13:56:59 +0200343 docker_log_path = "/tmp/results/%s/%s"%(self.uuid,vnf_name)
344 LOG.debug("LOG path for vnf %s is %s."%(vnf_name,docker_log_path))
edmaas8d4290a2017-03-27 13:56:59 +0200345 if not os.path.exists(docker_log_path):
edmaasd1626e52017-04-02 16:21:57 +0200346 LOG.debug("Creating folder %s"%docker_log_path)
edmaas8d4290a2017-03-27 13:56:59 +0200347 os.makedirs(docker_log_path)
edmaas8d4290a2017-03-27 13:56:59 +0200348
349 volumes.append(docker_log_path+":/mnt/share/")
350
351
352 # 5. do the dc.startCompute(name="foobar") call to run the container
peusterm398cd3b2016-03-21 15:04:54 +0100353 # TODO consider flavors, and other annotations
stevenvanrossemdb2f9432016-08-20 00:01:11 +0200354 # TODO: get all vnf id's from the nsd for this vnfd and use those as dockername
stevenvanrossem11a021f2016-08-05 13:43:00 +0200355 # use the vnf_id in the nsd as docker name
356 # so deployed containers can be easily mapped back to the nsd
stevenvanrossemb1018722017-04-06 02:21:20 +0200357
stevenvanrossem29afff52017-05-03 12:39:51 +0200358 #self.vnf_name2docker_name[vnf_name] = vnf_id
stevenvanrossem11a021f2016-08-05 13:43:00 +0200359
stevenvanrossem29afff52017-05-03 12:39:51 +0200360 #LOG.info("Starting %r as %r in DC %r" % (vnf_name, self.vnf_name2docker_name[vnf_name], vnfd.get("dc")))
361 LOG.info("Starting %r as %r in DC %r" % (vnf_name, vnf_id, vnfd.get("dc")))
362 LOG.debug("Interfaces for %r: %r" % (vnf_id, intfs))
edmaas8d4290a2017-03-27 13:56:59 +0200363 vnfi = target_dc.startCompute(
stevenvanrossem29afff52017-05-03 12:39:51 +0200364 vnf_id,
edmaas8d4290a2017-03-27 13:56:59 +0200365 network=intfs,
366 image=docker_name,
367 flavor_name="small",
368 cpu_quota=cpu_quota,
369 cpu_period=cpu_period,
370 cpuset=cpu_list,
371 mem_limit=mem_lim,
372 volumes=volumes)
stevenvanrossemb1018722017-04-06 02:21:20 +0200373
stevenvanrossem56749672017-04-06 14:44:33 +0200374 # rename the docker0 interfaces (eth0) to the management port name defined in the VNFD
stevenvanrossemb1018722017-04-06 02:21:20 +0200375 if USE_DOCKER_MGMT:
stevenvanrossem56749672017-04-06 14:44:33 +0200376 for intf_name in mgmt_intf_names:
377 self._vnf_reconfigure_network(vnfi, 'eth0', new_name=intf_name)
stevenvanrossemb1018722017-04-06 02:21:20 +0200378
peusterm398cd3b2016-03-21 15:04:54 +0100379 return vnfi
380
edmaas74d72492016-10-05 19:59:22 +0200381 def _stop_vnfi(self, vnfi):
edmaasd454d542016-09-29 13:19:22 +0200382 """
edmaas74d72492016-10-05 19:59:22 +0200383 Stop a VNF instance.
edmaasd454d542016-09-29 13:19:22 +0200384
edmaas74d72492016-10-05 19:59:22 +0200385 :param vnfi: vnf instance to be stopped
edmaasd454d542016-09-29 13:19:22 +0200386 """
edmaas9c4fd112016-10-05 19:45:57 +0200387 # Find the correct datacenter
388 status = vnfi.getStatus()
389 dc = vnfi.datacenter
edmaasd1626e52017-04-02 16:21:57 +0200390
edmaas9c4fd112016-10-05 19:45:57 +0200391 # stop the vnfi
edmaas74d72492016-10-05 19:59:22 +0200392 LOG.info("Stopping the vnf instance contained in %r in DC %r" % (status["name"], dc))
edmaas9c4fd112016-10-05 19:45:57 +0200393 dc.stopCompute(status["name"])
edmaasd454d542016-09-29 13:19:22 +0200394
stevenvanrossem29afff52017-05-03 12:39:51 +0200395 def _get_vnf_instance(self, instance_uuid, vnf_id):
peusterm6b5224d2016-07-20 13:20:31 +0200396 """
stevenvanrossem29afff52017-05-03 12:39:51 +0200397 Returns the Docker object for the given VNF id (or Docker name).
peusterm6b5224d2016-07-20 13:20:31 +0200398 :param instance_uuid: UUID of the service instance to search in.
399 :param name: VNF name or Docker name. We are fuzzy here.
400 :return:
401 """
stevenvanrossem29afff52017-05-03 12:39:51 +0200402 dn = vnf_id
403 #if vnf_id in self.vnf_name2docker_name:
404 # dn = self.vnf_name2docker_name[name]
peusterm6b5224d2016-07-20 13:20:31 +0200405 for vnfi in self.instances[instance_uuid]["vnf_instances"]:
406 if vnfi.name == dn:
407 return vnfi
stevenvanrossemce032e12017-04-05 17:31:20 +0200408 LOG.warning("No container with name: {0} found.".format(dn))
peusterm6b5224d2016-07-20 13:20:31 +0200409 return None
410
411 @staticmethod
stevenvanrossemb1018722017-04-06 02:21:20 +0200412 def _vnf_reconfigure_network(vnfi, if_name, net_str=None, new_name=None):
peusterm6b5224d2016-07-20 13:20:31 +0200413 """
414 Reconfigure the network configuration of a specific interface
415 of a running container.
stevenvanrossemce032e12017-04-05 17:31:20 +0200416 :param vnfi: container instance
peusterm6b5224d2016-07-20 13:20:31 +0200417 :param if_name: interface name
418 :param net_str: network configuration string, e.g., 1.2.3.4/24
419 :return:
420 """
stevenvanrossemb1018722017-04-06 02:21:20 +0200421
422 # assign new ip address
423 if net_str is not None:
424 intf = vnfi.intf(intf=if_name)
425 if intf is not None:
426 intf.setIP(net_str)
427 LOG.debug("Reconfigured network of %s:%s to %r" % (vnfi.name, if_name, net_str))
428 else:
429 LOG.warning("Interface not found: %s:%s. Network reconfiguration skipped." % (vnfi.name, if_name))
430
431 if new_name is not None:
432 vnfi.cmd('ip link set', if_name, 'down')
433 vnfi.cmd('ip link set', if_name, 'name', new_name)
434 vnfi.cmd('ip link set', new_name, 'up')
435 LOG.debug("Reconfigured interface name of %s:%s to %s" % (vnfi.name, if_name, new_name))
436
peusterm6b5224d2016-07-20 13:20:31 +0200437
438
peusterm8484b902016-06-21 09:03:35 +0200439 def _trigger_emulator_start_scripts_in_vnfis(self, vnfi_list):
440 for vnfi in vnfi_list:
441 config = vnfi.dcinfo.get("Config", dict())
442 env = config.get("Env", list())
443 for env_var in env:
edmaas7e084ea2016-11-28 13:50:23 +0100444 var, cmd = map(str.strip, map(str, env_var.split('=', 1)))
445 LOG.debug("%r = %r" % (var , cmd))
446 if var=="SON_EMU_CMD":
peusterme66edf72016-08-23 11:11:12 +0200447 LOG.info("Executing entry point script in %r: %r" % (vnfi.name, cmd))
448 # execute command in new thread to ensure that GK is not blocked by VNF
449 t = threading.Thread(target=vnfi.cmdPrint, args=(cmd,))
450 t.daemon = True
451 t.start()
peusterm8484b902016-06-21 09:03:35 +0200452
peusterm786cd542016-03-14 14:12:17 +0100453 def _unpack_service_package(self):
454 """
455 unzip *.son file and store contents in CATALOG_FOLDER/services/<service_uuid>/
456 """
peusterm82d406e2016-05-02 20:52:06 +0200457 LOG.info("Unzipping: %r" % self.package_file_path)
peusterm786cd542016-03-14 14:12:17 +0100458 with zipfile.ZipFile(self.package_file_path, "r") as z:
459 z.extractall(self.package_content_path)
460
peusterm82d406e2016-05-02 20:52:06 +0200461
peusterm7ec665d2016-03-14 15:20:44 +0100462 def _load_package_descriptor(self):
463 """
464 Load the main package descriptor YAML and keep it as dict.
465 :return:
466 """
467 self.manifest = load_yaml(
468 os.path.join(
469 self.package_content_path, "META-INF/MANIFEST.MF"))
470
471 def _load_nsd(self):
472 """
473 Load the entry NSD YAML and keep it as dict.
474 :return:
475 """
476 if "entry_service_template" in self.manifest:
477 nsd_path = os.path.join(
478 self.package_content_path,
479 make_relative_path(self.manifest.get("entry_service_template")))
480 self.nsd = load_yaml(nsd_path)
stevenvanrossembecc7c52016-11-07 05:52:01 +0100481 GK.net.deployed_nsds.append(self.nsd)
stevenvanrossem29afff52017-05-03 12:39:51 +0200482 # create dict to find the vnf_name for any vnf id
483 self.vnf_id2vnf_name = defaultdict(lambda: "NotExistingNode",
484 reduce(lambda x, y: dict(x, **y),
485 map(lambda d: {d["vnf_id"]: d["vnf_name"]},
486 self.nsd["network_functions"])))
stevenvanrossemce032e12017-04-05 17:31:20 +0200487
peusterm757fe9a2016-04-04 14:11:58 +0200488 LOG.debug("Loaded NSD: %r" % self.nsd.get("name"))
peusterm7ec665d2016-03-14 15:20:44 +0100489
490 def _load_vnfd(self):
491 """
492 Load all VNFD YAML files referenced in MANIFEST.MF and keep them in dict.
493 :return:
494 """
495 if "package_content" in self.manifest:
496 for pc in self.manifest.get("package_content"):
497 if pc.get("content-type") == "application/sonata.function_descriptor":
498 vnfd_path = os.path.join(
499 self.package_content_path,
500 make_relative_path(pc.get("name")))
501 vnfd = load_yaml(vnfd_path)
stevenvanrossem885e7622017-04-24 04:45:43 +0200502 self.vnfds[vnfd.get("name")] = vnfd
stevenvanrossem29afff52017-05-03 12:39:51 +0200503 LOG.debug("Loaded VNFD: %r" % vnfd.get("id"))
peusterm7ec665d2016-03-14 15:20:44 +0100504
stevenvanrossemdb2f9432016-08-20 00:01:11 +0200505 def _load_saps(self):
stevenvanrossemce032e12017-04-05 17:31:20 +0200506 # create list of all SAPs
stevenvanrossemb1018722017-04-06 02:21:20 +0200507 # check if we need to deploy management ports
508 if USE_DOCKER_MGMT:
509 SAPs = [p for p in self.nsd["connection_points"] if 'management' not in p.get('type')]
510 else:
511 SAPs = [p for p in self.nsd["connection_points"]]
stevenvanrossemce032e12017-04-05 17:31:20 +0200512
stevenvanrossemdb2f9432016-08-20 00:01:11 +0200513 for sap in SAPs:
stevenvanrossemce032e12017-04-05 17:31:20 +0200514 # endpoint needed in this service
515 sap_id, sap_interface, sap_docker_name = parse_interface(sap['id'])
516 # make sure SAP has type set (default internal)
517 sap["type"] = sap.get("type", 'internal')
stevenvanrossemdb2f9432016-08-20 00:01:11 +0200518
stevenvanrossemce032e12017-04-05 17:31:20 +0200519 # Each Service Access Point (connection_point) in the nsd is an IP address on the host
stevenvanrossemb1018722017-04-06 02:21:20 +0200520 if sap["type"] == "external":
stevenvanrossemce032e12017-04-05 17:31:20 +0200521 # add to vnfds to calculate placement later on
522 sap_net = SAP_SUBNETS.pop(0)
523 self.saps[sap_docker_name] = {"name": sap_docker_name , "type": "external", "net": sap_net}
524 # add SAP vnf to list in the NSD so it is deployed later on
525 # each SAP get a unique VNFD and vnf_id in the NSD and custom type (only defined in the dummygatekeeper)
526 self.nsd["network_functions"].append(
527 {"vnf_id": sap_docker_name, "vnf_name": sap_docker_name, "vnf_type": "sap_ext"})
stevenvanrossemdb2f9432016-08-20 00:01:11 +0200528
stevenvanrossemce032e12017-04-05 17:31:20 +0200529 # Each Service Access Point (connection_point) in the nsd is getting its own container (default)
stevenvanrossemb1018722017-04-06 02:21:20 +0200530 elif sap["type"] == "internal" or sap["type"] == "management":
stevenvanrossemce032e12017-04-05 17:31:20 +0200531 # add SAP to self.vnfds
stevenvanrossemc6ace2d2017-04-21 13:47:06 +0200532 if SAP_VNFD is None:
533 sapfile = pkg_resources.resource_filename(__name__, "sap_vnfd.yml")
534 else:
535 sapfile = SAP_VNFD
stevenvanrossemce032e12017-04-05 17:31:20 +0200536 sap_vnfd = load_yaml(sapfile)
537 sap_vnfd["connection_points"][0]["id"] = sap_interface
538 sap_vnfd["name"] = sap_docker_name
539 sap_vnfd["type"] = "internal"
540 # add to vnfds to calculate placement later on and deploy
541 self.saps[sap_docker_name] = sap_vnfd
542 # add SAP vnf to list in the NSD so it is deployed later on
543 # each SAP get a unique VNFD and vnf_id in the NSD
544 self.nsd["network_functions"].append(
545 {"vnf_id": sap_docker_name, "vnf_name": sap_docker_name, "vnf_type": "sap_int"})
546
547 LOG.debug("Loaded SAP: name: {0}, type: {1}".format(sap_docker_name, sap['type']))
548
549 # create sap lists
550 self.saps_ext = [self.saps[sap]['name'] for sap in self.saps if self.saps[sap]["type"] == "external"]
551 self.saps_int = [self.saps[sap]['name'] for sap in self.saps if self.saps[sap]["type"] == "internal"]
552
553 def _start_sap(self, sap, instance_uuid):
stevenvanrossemb1018722017-04-06 02:21:20 +0200554 if not DEPLOY_SAP:
555 return
556
stevenvanrossemce032e12017-04-05 17:31:20 +0200557 LOG.info('start SAP: {0} ,type: {1}'.format(sap['name'],sap['type']))
558 if sap["type"] == "internal":
559 vnfi = None
560 if not GK_STANDALONE_MODE:
561 vnfi = self._start_vnfd(sap)
562 self.instances[instance_uuid]["vnf_instances"].append(vnfi)
563
564 elif sap["type"] == "external":
565 target_dc = sap.get("dc")
566 # add interface to dc switch
stevenvanrossem86e64a02017-04-13 02:21:45 +0200567 target_dc.attachExternalSAP(sap['name'], sap['net'])
stevenvanrossemce032e12017-04-05 17:31:20 +0200568
569 def _connect_elines(self, eline_fwd_links, instance_uuid):
570 """
571 Connect all E-LINE links in the NSD
572 :param eline_fwd_links: list of E-LINE links in the NSD
573 :param: instance_uuid of the service
574 :return:
575 """
576 # cookie is used as identifier for the flowrules installed by the dummygatekeeper
577 # eg. different services get a unique cookie for their flowrules
578 cookie = 1
579 for link in eline_fwd_links:
stevenvanrossemb1018722017-04-06 02:21:20 +0200580 # check if we need to deploy this link when its a management link:
581 if USE_DOCKER_MGMT:
582 if self.check_mgmt_interface(link["connection_points_reference"]):
583 continue
584
stevenvanrossemce032e12017-04-05 17:31:20 +0200585 src_id, src_if_name, src_sap_id = parse_interface(link["connection_points_reference"][0])
586 dst_id, dst_if_name, dst_sap_id = parse_interface(link["connection_points_reference"][1])
587
588 setChaining = False
stevenvanrossemce032e12017-04-05 17:31:20 +0200589 # check if there is a SAP in the link and chain everything together
590 if src_sap_id in self.saps and dst_sap_id in self.saps:
591 LOG.info('2 SAPs cannot be chained together : {0} - {1}'.format(src_sap_id, dst_sap_id))
592 continue
593
594 elif src_sap_id in self.saps_ext:
595 src_id = src_sap_id
stevenvanrossem86e64a02017-04-13 02:21:45 +0200596 # set intf name to None so the chaining function will choose the first one
597 src_if_name = None
stevenvanrossem29afff52017-05-03 12:39:51 +0200598 #src_name = self.vnf_id2vnf_name[src_id]
599 #dst_name = self.vnf_id2vnf_name[dst_id]
600 dst_vnfi = self._get_vnf_instance(instance_uuid, dst_id)
stevenvanrossemce032e12017-04-05 17:31:20 +0200601 if dst_vnfi is not None:
602 # choose first ip address in sap subnet
603 sap_net = self.saps[src_sap_id]['net']
stevenvanrossem86e64a02017-04-13 02:21:45 +0200604 sap_ip = "{0}/{1}".format(str(sap_net[2]), sap_net.prefixlen)
stevenvanrossemce032e12017-04-05 17:31:20 +0200605 self._vnf_reconfigure_network(dst_vnfi, dst_if_name, sap_ip)
606 setChaining = True
607
608 elif dst_sap_id in self.saps_ext:
609 dst_id = dst_sap_id
stevenvanrossem86e64a02017-04-13 02:21:45 +0200610 # set intf name to None so the chaining function will choose the first one
611 dst_if_name = None
stevenvanrossem29afff52017-05-03 12:39:51 +0200612 #src_name = self.vnf_id2vnf_name[src_id]
613 #dst_name = self.vnf_id2vnf_name[dst_id]
614 src_vnfi = self._get_vnf_instance(instance_uuid, src_id)
stevenvanrossemce032e12017-04-05 17:31:20 +0200615 if src_vnfi is not None:
616 sap_net = self.saps[dst_sap_id]['net']
stevenvanrossem86e64a02017-04-13 02:21:45 +0200617 sap_ip = "{0}/{1}".format(str(sap_net[2]), sap_net.prefixlen)
stevenvanrossemce032e12017-04-05 17:31:20 +0200618 self._vnf_reconfigure_network(src_vnfi, src_if_name, sap_ip)
619 setChaining = True
620
621 # Link between 2 VNFs
622 else:
623 # make sure we use the correct sap vnf name
624 if src_sap_id in self.saps_int:
625 src_id = src_sap_id
626 if dst_sap_id in self.saps_int:
627 dst_id = dst_sap_id
stevenvanrossem29afff52017-05-03 12:39:51 +0200628 #src_name = self.vnf_id2vnf_name[src_id]
629 #dst_name = self.vnf_id2vnf_name[dst_id]
stevenvanrossemce032e12017-04-05 17:31:20 +0200630 # re-configure the VNFs IP assignment and ensure that a new subnet is used for each E-Link
stevenvanrossem29afff52017-05-03 12:39:51 +0200631 src_vnfi = self._get_vnf_instance(instance_uuid, src_id)
632 dst_vnfi = self._get_vnf_instance(instance_uuid, dst_id)
stevenvanrossemce032e12017-04-05 17:31:20 +0200633 if src_vnfi is not None and dst_vnfi is not None:
634 eline_net = ELINE_SUBNETS.pop(0)
635 ip1 = "{0}/{1}".format(str(eline_net[1]), eline_net.prefixlen)
636 ip2 = "{0}/{1}".format(str(eline_net[2]), eline_net.prefixlen)
637 self._vnf_reconfigure_network(src_vnfi, src_if_name, ip1)
638 self._vnf_reconfigure_network(dst_vnfi, dst_if_name, ip2)
639 setChaining = True
640
641 # Set the chaining
642 if setChaining:
643 ret = GK.net.setChain(
644 src_id, dst_id,
645 vnf_src_interface=src_if_name, vnf_dst_interface=dst_if_name,
646 bidirectional=BIDIRECTIONAL_CHAIN, cmd="add-flow", cookie=cookie, priority=10)
647 LOG.debug(
stevenvanrossem29afff52017-05-03 12:39:51 +0200648 "Setting up E-Line link. (%s:%s) -> (%s:%s)" % (
649 src_id, src_if_name, dst_id, dst_if_name))
stevenvanrossemce032e12017-04-05 17:31:20 +0200650
651
652 def _connect_elans(self, elan_fwd_links, instance_uuid):
653 """
654 Connect all E-LAN links in the NSD
655 :param elan_fwd_links: list of E-LAN links in the NSD
656 :param: instance_uuid of the service
657 :return:
658 """
659 for link in elan_fwd_links:
stevenvanrossemb1018722017-04-06 02:21:20 +0200660 # check if we need to deploy this link when its a management link:
661 if USE_DOCKER_MGMT:
662 if self.check_mgmt_interface(link["connection_points_reference"]):
663 continue
stevenvanrossemce032e12017-04-05 17:31:20 +0200664
665 elan_vnf_list = []
stevenvanrossemce032e12017-04-05 17:31:20 +0200666 # check if an external SAP is in the E-LAN (then a subnet is already defined)
667 intfs_elan = [intf for intf in link["connection_points_reference"]]
668 lan_sap = self.check_ext_saps(intfs_elan)
669 if lan_sap:
670 lan_net = self.saps[lan_sap]['net']
671 lan_hosts = list(lan_net.hosts())
672 sap_ip = str(lan_hosts.pop(0))
673 else:
674 lan_net = ELAN_SUBNETS.pop(0)
675 lan_hosts = list(lan_net.hosts())
676
677 # generate lan ip address for all interfaces except external SAPs
678 for intf in link["connection_points_reference"]:
679
680 # skip external SAPs, they already have an ip
681 vnf_id, vnf_interface, vnf_sap_docker_name = parse_interface(intf)
682 if vnf_sap_docker_name in self.saps_ext:
683 elan_vnf_list.append({'name': vnf_sap_docker_name, 'interface': vnf_interface})
684 continue
685
686 ip_address = "{0}/{1}".format(str(lan_hosts.pop(0)), lan_net.prefixlen)
687 vnf_id, intf_name, vnf_sap_id = parse_interface(intf)
688
689 # make sure we use the correct sap vnf name
690 src_docker_name = vnf_id
691 if vnf_sap_id in self.saps_int:
692 src_docker_name = vnf_sap_id
693 vnf_id = vnf_sap_id
694
stevenvanrossem29afff52017-05-03 12:39:51 +0200695 #vnf_name = self.vnf_id2vnf_name[vnf_id]
stevenvanrossemce032e12017-04-05 17:31:20 +0200696 LOG.debug(
stevenvanrossemb1018722017-04-06 02:21:20 +0200697 "Setting up E-LAN interface. %s(%s:%s) -> %s" % (
stevenvanrossem29afff52017-05-03 12:39:51 +0200698 vnf_id, intf_name, ip_address))
stevenvanrossemce032e12017-04-05 17:31:20 +0200699
stevenvanrossem29afff52017-05-03 12:39:51 +0200700 if vnf_id in self.vnfds:
stevenvanrossemce032e12017-04-05 17:31:20 +0200701 # re-configure the VNFs IP assignment and ensure that a new subnet is used for each E-LAN
702 # E-LAN relies on the learning switch capability of Ryu which has to be turned on in the topology
703 # (DCNetwork(controller=RemoteController, enable_learning=True)), so no explicit chaining is necessary.
stevenvanrossem29afff52017-05-03 12:39:51 +0200704 vnfi = self._get_vnf_instance(instance_uuid, vnf_id)
stevenvanrossemce032e12017-04-05 17:31:20 +0200705 if vnfi is not None:
706 self._vnf_reconfigure_network(vnfi, intf_name, ip_address)
707 # add this vnf and interface to the E-LAN for tagging
708 elan_vnf_list.append({'name': src_docker_name, 'interface': intf_name})
709
710 # install the VLAN tags for this E-LAN
711 GK.net.setLAN(elan_vnf_list)
712
stevenvanrossemdb2f9432016-08-20 00:01:11 +0200713
peusterm7ec665d2016-03-14 15:20:44 +0100714 def _load_docker_files(self):
715 """
peusterm9d7d4b02016-03-23 19:56:44 +0100716 Get all paths to Dockerfiles from VNFDs and store them in dict.
peusterm7ec665d2016-03-14 15:20:44 +0100717 :return:
718 """
peusterm9d7d4b02016-03-23 19:56:44 +0100719 for k, v in self.vnfds.iteritems():
720 for vu in v.get("virtual_deployment_units"):
721 if vu.get("vm_image_format") == "docker":
722 vm_image = vu.get("vm_image")
peusterm7ec665d2016-03-14 15:20:44 +0100723 docker_path = os.path.join(
724 self.package_content_path,
peusterm9d7d4b02016-03-23 19:56:44 +0100725 make_relative_path(vm_image))
726 self.local_docker_files[k] = docker_path
peusterm56356cb2016-05-03 10:43:43 +0200727 LOG.debug("Found Dockerfile (%r): %r" % (k, docker_path))
peusterm7ec665d2016-03-14 15:20:44 +0100728
peusterm82d406e2016-05-02 20:52:06 +0200729 def _load_docker_urls(self):
730 """
731 Get all URLs to pre-build docker images in some repo.
732 :return:
733 """
stevenvanrossemce032e12017-04-05 17:31:20 +0200734 # also merge sap dicts, because internal saps also need a docker container
735 all_vnfs = self.vnfds.copy()
736 all_vnfs.update(self.saps)
737
738 for k, v in all_vnfs.iteritems():
739 for vu in v.get("virtual_deployment_units", {}):
peusterm82d406e2016-05-02 20:52:06 +0200740 if vu.get("vm_image_format") == "docker":
peusterm35ba4052016-05-02 21:21:14 +0200741 url = vu.get("vm_image")
742 if url is not None:
743 url = url.replace("http://", "")
744 self.remote_docker_image_urls[k] = url
peusterm56356cb2016-05-03 10:43:43 +0200745 LOG.debug("Found Docker image URL (%r): %r" % (k, self.remote_docker_image_urls[k]))
peusterm82d406e2016-05-02 20:52:06 +0200746
peustermbdfab7e2016-03-14 16:03:30 +0100747 def _build_images_from_dockerfiles(self):
748 """
749 Build Docker images for each local Dockerfile found in the package: self.local_docker_files
750 """
peusterm398cd3b2016-03-21 15:04:54 +0100751 if GK_STANDALONE_MODE:
752 return # do not build anything in standalone mode
peustermbdfab7e2016-03-14 16:03:30 +0100753 dc = DockerClient()
754 LOG.info("Building %d Docker images (this may take several minutes) ..." % len(self.local_docker_files))
755 for k, v in self.local_docker_files.iteritems():
756 for line in dc.build(path=v.replace("Dockerfile", ""), tag=k, rm=False, nocache=False):
757 LOG.debug("DOCKER BUILD: %s" % line)
758 LOG.info("Docker image created: %s" % k)
759
peusterm82d406e2016-05-02 20:52:06 +0200760 def _pull_predefined_dockerimages(self):
peustermbdfab7e2016-03-14 16:03:30 +0100761 """
762 If the package contains URLs to pre-build Docker images, we download them with this method.
763 """
peusterm35ba4052016-05-02 21:21:14 +0200764 dc = DockerClient()
765 for url in self.remote_docker_image_urls.itervalues():
peusterm56356cb2016-05-03 10:43:43 +0200766 if not FORCE_PULL: # only pull if not present (speedup for development)
stevenvanrossem8a9df3f2017-01-27 22:35:04 +0100767 if len(dc.images.list(name=url)) > 0:
peusterm56356cb2016-05-03 10:43:43 +0200768 LOG.debug("Image %r present. Skipping pull." % url)
769 continue
peusterm35ba4052016-05-02 21:21:14 +0200770 LOG.info("Pulling image: %r" % url)
stevenvanrosseme8d86282017-01-28 00:52:22 +0100771 # this seems to fail with latest docker api version 2.0.2
772 # dc.images.pull(url,
773 # insecure_registry=True)
774 #using docker cli instead
775 cmd = ["docker",
776 "pull",
777 url,
778 ]
779 Popen(cmd).wait()
780
781
782
peusterm786cd542016-03-14 14:12:17 +0100783
peusterm3444ae42016-03-16 20:46:41 +0100784 def _check_docker_image_exists(self, image_name):
peusterm3f307142016-03-16 21:02:53 +0100785 """
786 Query the docker service and check if the given image exists
787 :param image_name: name of the docker image
788 :return:
789 """
stevenvanrossem8a9df3f2017-01-27 22:35:04 +0100790 return len(DockerClient().images.list(name=image_name)) > 0
peusterm3444ae42016-03-16 20:46:41 +0100791
peusterm082378b2016-03-16 20:14:22 +0100792 def _calculate_placement(self, algorithm):
793 """
794 Do placement by adding the a field "dc" to
795 each VNFD that points to one of our
796 data center objects known to the gatekeeper.
797 """
798 assert(len(self.vnfds) > 0)
799 assert(len(GK.dcs) > 0)
800 # instantiate algorithm an place
801 p = algorithm()
stevenvanrossemce032e12017-04-05 17:31:20 +0200802 p.place(self.nsd, self.vnfds, self.saps, GK.dcs)
peusterm082378b2016-03-16 20:14:22 +0100803 LOG.info("Using placement algorithm: %r" % p.__class__.__name__)
804 # lets print the placement result
805 for name, vnfd in self.vnfds.iteritems():
806 LOG.info("Placed VNF %r on DC %r" % (name, str(vnfd.get("dc"))))
stevenvanrossemce032e12017-04-05 17:31:20 +0200807 for sap in self.saps:
808 sap_dict = self.saps[sap]
809 LOG.info("Placed SAP %r on DC %r" % (sap, str(sap_dict.get("dc"))))
810
peusterm082378b2016-03-16 20:14:22 +0100811
edmaas7e084ea2016-11-28 13:50:23 +0100812 def _calculate_cpu_cfs_values(self, cpu_time_percentage):
813 """
814 Calculate cpu period and quota for CFS
815 :param cpu_time_percentage: percentage of overall CPU to be used
816 :return: cpu_period, cpu_quota
817 """
818 if cpu_time_percentage is None:
819 return -1, -1
820 if cpu_time_percentage < 0:
821 return -1, -1
822 # (see: https://www.kernel.org/doc/Documentation/scheduler/sched-bwc.txt)
823 # Attention minimum cpu_quota is 1ms (micro)
824 cpu_period = 1000000 # lets consider a fixed period of 1000000 microseconds for now
825 LOG.debug("cpu_period is %r, cpu_percentage is %r" % (cpu_period, cpu_time_percentage))
826 cpu_quota = cpu_period * cpu_time_percentage # calculate the fraction of cpu time for this container
827 # ATTENTION >= 1000 to avoid a invalid argument system error ... no idea why
828 if cpu_quota < 1000:
829 LOG.debug("cpu_quota before correcting: %r" % cpu_quota)
830 cpu_quota = 1000
831 LOG.warning("Increased CPU quota to avoid system error.")
832 LOG.debug("Calculated: cpu_period=%f / cpu_quota=%f" % (cpu_period, cpu_quota))
833 return int(cpu_period), int(cpu_quota)
834
stevenvanrossemce032e12017-04-05 17:31:20 +0200835 def check_ext_saps(self, intf_list):
836 # check if the list of interfacs contains an externl SAP
837 saps_ext = [self.saps[sap]['name'] for sap in self.saps if self.saps[sap]["type"] == "external"]
838 for intf_name in intf_list:
839 vnf_id, vnf_interface, vnf_sap_docker_name = parse_interface(intf_name)
840 if vnf_sap_docker_name in saps_ext:
841 return vnf_sap_docker_name
peusterm082378b2016-03-16 20:14:22 +0100842
stevenvanrossemb1018722017-04-06 02:21:20 +0200843 def check_mgmt_interface(self, intf_list):
844 SAPs_mgmt = [p.get('id') for p in self.nsd["connection_points"] if 'management' in p.get('type')]
845 for intf_name in intf_list:
846 if intf_name in SAPs_mgmt:
847 return True
848
peusterm082378b2016-03-16 20:14:22 +0100849"""
850Some (simple) placement algorithms
851"""
852
853
854class FirstDcPlacement(object):
855 """
856 Placement: Always use one and the same data center from the GK.dcs dict.
857 """
stevenvanrossemce032e12017-04-05 17:31:20 +0200858 def place(self, nsd, vnfds, saps, dcs):
peusterm082378b2016-03-16 20:14:22 +0100859 for name, vnfd in vnfds.iteritems():
860 vnfd["dc"] = list(dcs.itervalues())[0]
861
peusterme26487b2016-03-08 14:00:21 +0100862
peustermf6459542016-08-31 19:00:17 +0200863class RoundRobinDcPlacement(object):
864 """
865 Placement: Distribute VNFs across all available DCs in a round robin fashion.
866 """
stevenvanrossemce032e12017-04-05 17:31:20 +0200867 def place(self, nsd, vnfds, saps, dcs):
peustermf6459542016-08-31 19:00:17 +0200868 c = 0
edmaasd454d542016-09-29 13:19:22 +0200869 dcs_list = list(dcs.itervalues())
peustermf6459542016-08-31 19:00:17 +0200870 for name, vnfd in vnfds.iteritems():
871 vnfd["dc"] = dcs_list[c % len(dcs_list)]
872 c += 1 # inc. c to use next DC
873
stevenvanrossemce032e12017-04-05 17:31:20 +0200874class RoundRobinDcPlacementWithSAPs(object):
875 """
876 Placement: Distribute VNFs across all available DCs in a round robin fashion,
877 every SAP is instantiated on the same DC as the connected VNF.
878 """
879 def place(self, nsd, vnfds, saps, dcs):
880
881 # place vnfs
882 c = 0
883 dcs_list = list(dcs.itervalues())
884 for name, vnfd in vnfds.iteritems():
885 vnfd["dc"] = dcs_list[c % len(dcs_list)]
886 c += 1 # inc. c to use next DC
887
888 # place SAPs
889 vlinks = nsd.get("virtual_links", [])
890 eline_fwd_links = [l for l in vlinks if (l["connectivity_type"] == "E-Line")]
891 elan_fwd_links = [l for l in vlinks if (l["connectivity_type"] == "E-LAN")]
892
stevenvanrossem29afff52017-05-03 12:39:51 +0200893 # vnf_id2vnf_name = defaultdict(lambda: "NotExistingNode",
894 # reduce(lambda x, y: dict(x, **y),
895 # map(lambda d: {d["vnf_id"]: d["vnf_name"]},
896 # nsd["network_functions"])))
stevenvanrossemce032e12017-04-05 17:31:20 +0200897
898 # SAPs on E-Line links are placed on the same DC as the VNF on the E-Line
899 for link in eline_fwd_links:
900 src_id, src_if_name, src_sap_id = parse_interface(link["connection_points_reference"][0])
901 dst_id, dst_if_name, dst_sap_id = parse_interface(link["connection_points_reference"][1])
902
903 # check if there is a SAP in the link
904 if src_sap_id in saps:
stevenvanrossem29afff52017-05-03 12:39:51 +0200905 #dst_vnf_name = vnf_id2vnf_name[dst_id]
stevenvanrossemce032e12017-04-05 17:31:20 +0200906 # get dc where connected vnf is mapped to
stevenvanrossem29afff52017-05-03 12:39:51 +0200907 dc = vnfds[dst_id]['dc']
stevenvanrossemce032e12017-04-05 17:31:20 +0200908 saps[src_sap_id]['dc'] = dc
909
910 if dst_sap_id in saps:
stevenvanrossem29afff52017-05-03 12:39:51 +0200911 #src_vnf_name = vnf_id2vnf_name[src_id]
stevenvanrossemce032e12017-04-05 17:31:20 +0200912 # get dc where connected vnf is mapped to
stevenvanrossem29afff52017-05-03 12:39:51 +0200913 dc = vnfds[src_id]['dc']
stevenvanrossemce032e12017-04-05 17:31:20 +0200914 saps[dst_sap_id]['dc'] = dc
915
916 # SAPs on E-LANs are placed on a random DC
917 dcs_list = list(dcs.itervalues())
918 dc_len = len(dcs_list)
919 for link in elan_fwd_links:
920 for intf in link["connection_points_reference"]:
921 # find SAP interfaces
922 intf_id, intf_name, intf_sap_id = parse_interface(intf)
923 if intf_sap_id in saps:
924 dc = dcs_list[randint(0, dc_len-1)]
stevenvanrossemb1018722017-04-06 02:21:20 +0200925 saps[intf_sap_id]['dc'] = dc
peustermf6459542016-08-31 19:00:17 +0200926
927
928
peusterme26487b2016-03-08 14:00:21 +0100929"""
930Resource definitions and API endpoints
931"""
932
933
934class Packages(fr.Resource):
935
936 def post(self):
937 """
peusterm26455852016-03-08 14:23:53 +0100938 Upload a *.son service package to the dummy gatekeeper.
939
peusterme26487b2016-03-08 14:00:21 +0100940 We expect request with a *.son file and store it in UPLOAD_FOLDER
peusterm26455852016-03-08 14:23:53 +0100941 :return: UUID
peusterme26487b2016-03-08 14:00:21 +0100942 """
943 try:
944 # get file contents
peustermec5cefe2017-02-09 11:15:14 +0100945 LOG.info("POST /packages called")
peusterm593ca582016-03-30 19:55:01 +0200946 # lets search for the package in the request
peustermec5cefe2017-02-09 11:15:14 +0100947 is_file_object = False # make API more robust: file can be in data or in files field
peusterm593ca582016-03-30 19:55:01 +0200948 if "package" in request.files:
949 son_file = request.files["package"]
peustermec5cefe2017-02-09 11:15:14 +0100950 is_file_object = True
951 elif len(request.data) > 0:
952 son_file = request.data
peusterm593ca582016-03-30 19:55:01 +0200953 else:
954 return {"service_uuid": None, "size": 0, "sha1": None, "error": "upload failed. file not found."}, 500
peusterme26487b2016-03-08 14:00:21 +0100955 # generate a uuid to reference this package
956 service_uuid = str(uuid.uuid4())
peusterm786cd542016-03-14 14:12:17 +0100957 file_hash = hashlib.sha1(str(son_file)).hexdigest()
peusterme26487b2016-03-08 14:00:21 +0100958 # ensure that upload folder exists
959 ensure_dir(UPLOAD_FOLDER)
960 upload_path = os.path.join(UPLOAD_FOLDER, "%s.son" % service_uuid)
961 # store *.son file to disk
peustermec5cefe2017-02-09 11:15:14 +0100962 if is_file_object:
963 son_file.save(upload_path)
964 else:
965 with open(upload_path, 'wb') as f:
966 f.write(son_file)
peusterme26487b2016-03-08 14:00:21 +0100967 size = os.path.getsize(upload_path)
stevenvanrossem301d2d32017-04-17 21:22:10 +0200968
969 # first stop and delete any other running services
970 if AUTO_DELETE:
stevenvanrossem00e65b92017-04-18 16:57:40 +0200971 service_list = copy.copy(GK.services)
972 for service_uuid in service_list:
973 instances_list = copy.copy(GK.services[service_uuid].instances)
974 for instance_uuid in instances_list:
stevenvanrossem301d2d32017-04-17 21:22:10 +0200975 # valid service and instance UUID, stop service
976 GK.services.get(service_uuid).stop_service(instance_uuid)
977 LOG.info("service instance with uuid %r stopped." % instance_uuid)
978
peusterm786cd542016-03-14 14:12:17 +0100979 # create a service object and register it
980 s = Service(service_uuid, file_hash, upload_path)
981 GK.register_service_package(service_uuid, s)
stevenvanrossem4378f162017-04-14 16:09:21 +0200982
983 # automatically deploy the service
984 if AUTO_DEPLOY:
985 # ok, we have a service uuid, lets start the service
stevenvanrossem85d749c2017-04-22 21:47:15 +0200986 reset_subnets()
stevenvanrossem4378f162017-04-14 16:09:21 +0200987 service_instance_uuid = GK.services.get(service_uuid).start_service()
988
peusterme26487b2016-03-08 14:00:21 +0100989 # generate the JSON result
peusterm938143e2016-09-15 15:39:36 +0200990 return {"service_uuid": service_uuid, "size": size, "sha1": file_hash, "error": None}, 201
peusterme26487b2016-03-08 14:00:21 +0100991 except Exception as ex:
peusterm786cd542016-03-14 14:12:17 +0100992 LOG.exception("Service package upload failed:")
peusterm593ca582016-03-30 19:55:01 +0200993 return {"service_uuid": None, "size": 0, "sha1": None, "error": "upload failed"}, 500
peusterme26487b2016-03-08 14:00:21 +0100994
995 def get(self):
peusterm26455852016-03-08 14:23:53 +0100996 """
997 Return a list of UUID's of uploaded service packages.
998 :return: dict/list
999 """
peusterm075b46a2016-07-20 17:08:00 +02001000 LOG.info("GET /packages")
peusterm786cd542016-03-14 14:12:17 +01001001 return {"service_uuid_list": list(GK.services.iterkeys())}
peusterme26487b2016-03-08 14:00:21 +01001002
1003
1004class Instantiations(fr.Resource):
1005
1006 def post(self):
peusterm26455852016-03-08 14:23:53 +01001007 """
1008 Instantiate a service specified by its UUID.
1009 Will return a new UUID to identify the running service instance.
1010 :return: UUID
1011 """
edmaasd1626e52017-04-02 16:21:57 +02001012 LOG.info("POST /instantiations (or /requests) called")
peusterm64b45502016-03-16 21:15:14 +01001013 # try to extract the service uuid from the request
peusterm26455852016-03-08 14:23:53 +01001014 json_data = request.get_json(force=True)
peusterm64b45502016-03-16 21:15:14 +01001015 service_uuid = json_data.get("service_uuid")
1016
1017 # lets be a bit fuzzy here to make testing easier
peustermec5cefe2017-02-09 11:15:14 +01001018 if (service_uuid is None or service_uuid=="latest") and len(GK.services) > 0:
peusterm64b45502016-03-16 21:15:14 +01001019 # if we don't get a service uuid, we simple start the first service in the list
1020 service_uuid = list(GK.services.iterkeys())[0]
peustermbea87372016-03-16 19:37:35 +01001021 if service_uuid in GK.services:
peusterm64b45502016-03-16 21:15:14 +01001022 # ok, we have a service uuid, lets start the service
peustermbea87372016-03-16 19:37:35 +01001023 service_instance_uuid = GK.services.get(service_uuid).start_service()
edmaas59b28fc2016-11-01 17:11:47 +01001024 return {"service_instance_uuid": service_instance_uuid}, 201
peustermbea87372016-03-16 19:37:35 +01001025 return "Service not found", 404
peusterme26487b2016-03-08 14:00:21 +01001026
1027 def get(self):
peusterm26455852016-03-08 14:23:53 +01001028 """
1029 Returns a list of UUIDs containing all running services.
1030 :return: dict / list
1031 """
peusterm075b46a2016-07-20 17:08:00 +02001032 LOG.info("GET /instantiations")
1033 return {"service_instantiations_list": [
peusterm64b45502016-03-16 21:15:14 +01001034 list(s.instances.iterkeys()) for s in GK.services.itervalues()]}
peusterm786cd542016-03-14 14:12:17 +01001035
edmaasd454d542016-09-29 13:19:22 +02001036 def delete(self):
1037 """
edmaas74d72492016-10-05 19:59:22 +02001038 Stops a running service specified by its service and instance UUID.
edmaasd454d542016-09-29 13:19:22 +02001039 """
edmaas74d72492016-10-05 19:59:22 +02001040 # try to extract the service and instance UUID from the request
edmaasd454d542016-09-29 13:19:22 +02001041 json_data = request.get_json(force=True)
1042 service_uuid = json_data.get("service_uuid")
edmaas59b28fc2016-11-01 17:11:47 +01001043 instance_uuid = json_data.get("service_instance_uuid")
edmaas9c4fd112016-10-05 19:45:57 +02001044
1045 # try to be fuzzy
1046 if service_uuid is None and len(GK.services) > 0:
1047 #if we don't get a service uuid, we simply stop the last service in the list
1048 service_uuid = list(GK.services.iterkeys())[0]
1049 if instance_uuid is None and len(GK.services[service_uuid].instances) > 0:
1050 instance_uuid = list(GK.services[service_uuid].instances.iterkeys())[0]
edmaasd454d542016-09-29 13:19:22 +02001051
edmaas74d72492016-10-05 19:59:22 +02001052 if service_uuid in GK.services and instance_uuid in GK.services[service_uuid].instances:
1053 # valid service and instance UUID, stop service
edmaas9c4fd112016-10-05 19:45:57 +02001054 GK.services.get(service_uuid).stop_service(instance_uuid)
edmaasf5d0cbe2016-12-11 15:12:26 +01001055 return "service instance with uuid %r stopped." % instance_uuid,200
edmaasd454d542016-09-29 13:19:22 +02001056 return "Service not found", 404
1057
edmaas74d72492016-10-05 19:59:22 +02001058class Exit(fr.Resource):
edmaas9c4fd112016-10-05 19:45:57 +02001059
1060 def put(self):
1061 """
1062 Stop the running Containernet instance regardless of data transmitted
1063 """
edmaasf5d0cbe2016-12-11 15:12:26 +01001064 list(GK.dcs.values())[0].net.stop()
edmaas59b28fc2016-11-01 17:11:47 +01001065
1066
1067def initialize_GK():
1068 global GK
1069 GK = Gatekeeper()
1070
edmaas9c4fd112016-10-05 19:45:57 +02001071
peusterme26487b2016-03-08 14:00:21 +01001072
1073# create a single, global GK object
edmaas59b28fc2016-11-01 17:11:47 +01001074GK = None
1075initialize_GK()
peusterme26487b2016-03-08 14:00:21 +01001076# setup Flask
1077app = Flask(__name__)
1078app.config['MAX_CONTENT_LENGTH'] = 512 * 1024 * 1024 # 512 MB max upload
1079api = fr.Api(app)
1080# define endpoints
peustermec5cefe2017-02-09 11:15:14 +01001081api.add_resource(Packages, '/packages', '/api/v2/packages')
1082api.add_resource(Instantiations, '/instantiations', '/api/v2/instantiations', '/api/v2/requests')
edmaas74d72492016-10-05 19:59:22 +02001083api.add_resource(Exit, '/emulator/exit')
peusterme26487b2016-03-08 14:00:21 +01001084
1085
peusterme26487b2016-03-08 14:00:21 +01001086
peusterm082378b2016-03-16 20:14:22 +01001087def start_rest_api(host, port, datacenters=dict()):
peustermbea87372016-03-16 19:37:35 +01001088 GK.dcs = datacenters
stevenvanrossembecc7c52016-11-07 05:52:01 +01001089 GK.net = get_dc_network()
peusterme26487b2016-03-08 14:00:21 +01001090 # start the Flask server (not the best performance but ok for our use case)
1091 app.run(host=host,
1092 port=port,
1093 debug=True,
1094 use_reloader=False # this is needed to run Flask in a non-main thread
1095 )
1096
1097
1098def ensure_dir(name):
1099 if not os.path.exists(name):
peusterm7ec665d2016-03-14 15:20:44 +01001100 os.makedirs(name)
1101
1102
1103def load_yaml(path):
1104 with open(path, "r") as f:
1105 try:
1106 r = yaml.load(f)
1107 except yaml.YAMLError as exc:
1108 LOG.exception("YAML parse error")
1109 r = dict()
1110 return r
1111
1112
1113def make_relative_path(path):
peusterm9d7d4b02016-03-23 19:56:44 +01001114 if path.startswith("file://"):
1115 path = path.replace("file://", "", 1)
peusterm7ec665d2016-03-14 15:20:44 +01001116 if path.startswith("/"):
peusterm9d7d4b02016-03-23 19:56:44 +01001117 path = path.replace("/", "", 1)
peusterm7ec665d2016-03-14 15:20:44 +01001118 return path
1119
1120
stevenvanrossembecc7c52016-11-07 05:52:01 +01001121def get_dc_network():
1122 """
1123 retrieve the DCnetwork where this dummygatekeeper (GK) connects to.
1124 Assume at least 1 datacenter is connected to this GK, and that all datacenters belong to the same DCNetwork
1125 :return:
1126 """
1127 assert (len(GK.dcs) > 0)
1128 return GK.dcs.values()[0].net
peusterm6b5224d2016-07-20 13:20:31 +02001129
stevenvanrossemce032e12017-04-05 17:31:20 +02001130
1131def parse_interface(interface_name):
1132 """
1133 convert the interface name in the nsd to the according vnf_id, vnf_interface names
1134 :param interface_name:
1135 :return:
1136 """
1137
1138 if ':' in interface_name:
1139 vnf_id, vnf_interface = interface_name.split(':')
1140 vnf_sap_docker_name = interface_name.replace(':', '_')
1141 else:
1142 vnf_id = interface_name
1143 vnf_interface = interface_name
1144 vnf_sap_docker_name = interface_name
1145
1146 return vnf_id, vnf_interface, vnf_sap_docker_name
1147
stevenvanrossem85d749c2017-04-22 21:47:15 +02001148def reset_subnets():
1149 # private subnet definitions for the generated interfaces
1150 # 10.10.xxx.0/24
1151 global SAP_SUBNETS
1152 SAP_SUBNETS = generate_subnets('10.10', 0, subnet_size=50, mask=30)
1153 # 10.20.xxx.0/30
1154 global ELAN_SUBNETS
1155 ELAN_SUBNETS = generate_subnets('10.20', 0, subnet_size=50, mask=24)
1156 # 10.30.xxx.0/30
1157 global ELINE_SUBNETS
1158 ELINE_SUBNETS = generate_subnets('10.30', 0, subnet_size=50, mask=30)
1159
peusterme26487b2016-03-08 14:00:21 +01001160if __name__ == '__main__':
1161 """
1162 Lets allow to run the API in standalone mode.
1163 """
peusterm398cd3b2016-03-21 15:04:54 +01001164 GK_STANDALONE_MODE = True
peusterme26487b2016-03-08 14:00:21 +01001165 logging.getLogger("werkzeug").setLevel(logging.INFO)
1166 start_rest_api("0.0.0.0", 8000)
1167