ea9a76ea18af67f527d308b8f333935d74a5a065
[osm/vim-emu.git] / src / emuvim / api / sonata / dummygatekeeper.py
1 # 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).
26 import logging
27 import os
28 import uuid
29 import hashlib
30 import zipfile
31 import yaml
32 import threading
33 from docker import DockerClient
34 from flask import Flask, request
35 import flask_restful as fr
36 from collections import defaultdict
37 import pkg_resources
38 from subprocess import Popen
39 from random import randint
40 import ipaddress
41 import copy
42 import time
43 from functools import reduce
44
45 logging.basicConfig()
46 LOG = logging.getLogger("sonata-dummy-gatekeeper")
47 LOG.setLevel(logging.DEBUG)
48 logging.getLogger("werkzeug").setLevel(logging.WARNING)
49
50 GK_STORAGE = "/tmp/son-dummy-gk/"
51 UPLOAD_FOLDER = os.path.join(GK_STORAGE, "uploads/")
52 CATALOG_FOLDER = os.path.join(GK_STORAGE, "catalog/")
53
54 # Enable Dockerfile build functionality
55 BUILD_DOCKERFILE = False
56
57 # flag to indicate that we run without the emulator (only the bare API for
58 # integration testing)
59 GK_STANDALONE_MODE = False
60
61 # should a new version of an image be pulled even if its available
62 FORCE_PULL = False
63
64 # Automatically deploy SAPs (endpoints) of the service as new containers
65 # Attention: This is not a configuration switch but a global variable!
66 # Don't change its default value.
67 DEPLOY_SAP = False
68
69 # flag to indicate if we use bidirectional forwarding rules in the
70 # automatic chaining process
71 BIDIRECTIONAL_CHAIN = False
72
73 # override the management interfaces in the descriptors with default
74 # docker0 interfaces in the containers
75 USE_DOCKER_MGMT = False
76
77 # automatically deploy uploaded packages (no need to execute son-access
78 # deploy --latest separately)
79 AUTO_DEPLOY = False
80
81 # and also automatically terminate any other running services
82 AUTO_DELETE = False
83
84
85 def 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
92
93
94 # private subnet definitions for the generated interfaces
95 # 10.10.xxx.0/24
96 SAP_SUBNETS = generate_subnets('10.10', 0, subnet_size=50, mask=30)
97 # 10.20.xxx.0/30
98 ELAN_SUBNETS = generate_subnets('10.20', 0, subnet_size=50, mask=24)
99 # 10.30.xxx.0/30
100 ELINE_SUBNETS = generate_subnets('10.30', 0, subnet_size=50, mask=30)
101
102 # path to the VNFD for the SAP VNF that is deployed as internal SAP point
103 SAP_VNFD = None
104
105 # Time in seconds to wait for vnf stop scripts to execute fully
106 VNF_STOP_WAIT_TIME = 5
107
108
109 class Gatekeeper(object):
110
111 def __init__(self):
112 self.services = dict()
113 self.dcs = dict()
114 self.net = None
115 # used to generate short names for VNFs (Mininet limitation)
116 self.vnf_counter = 0
117 LOG.info("Create SONATA dummy gatekeeper.")
118
119 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
129 def get_next_vnf_name(self):
130 self.vnf_counter += 1
131 return "vnf%d" % self.vnf_counter
132
133
134 class 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
148 self.package_content_path = os.path.join(
149 CATALOG_FOLDER, "services/%s" % self.uuid)
150 self.manifest = None
151 self.nsd = None
152 self.vnfds = dict()
153 self.saps = dict()
154 self.saps_ext = list()
155 self.saps_int = list()
156 self.local_docker_files = dict()
157 self.remote_docker_image_urls = dict()
158 self.instances = dict()
159 # dict to find the vnf_name for any vnf id
160 self.vnf_id2vnf_name = dict()
161
162 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
170 self._load_package_descriptor()
171 self._load_nsd()
172 self._load_vnfd()
173 if DEPLOY_SAP:
174 self._load_saps()
175 # 3. prepare container images (e.g. download or build Dockerfile)
176 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()
182 LOG.info("On-boarded service: %r" % self.manifest.get("name"))
183
184 def start_service(self):
185 """
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)
193
194 # 1. each service instance gets a new uuid to identify it
195 instance_uuid = str(uuid.uuid4())
196 # build a instances dict (a bit like a NSR :))
197 self.instances[instance_uuid] = dict()
198 self.instances[instance_uuid]["vnf_instances"] = list()
199
200 # 2. compute placement of this service instance (adds DC names to
201 # VNFDs)
202 if not GK_STANDALONE_MODE:
203 # self._calculate_placement(FirstDcPlacement)
204 self._calculate_placement(RoundRobinDcPlacementWithSAPs)
205 # 3. start all vnfds that we have in the service (except SAPs)
206 for vnf_id in self.vnfds:
207 vnfd = self.vnfds[vnf_id]
208 vnfi = None
209 if not GK_STANDALONE_MODE:
210 vnfi = self._start_vnfd(vnfd, vnf_id)
211 self.instances[instance_uuid]["vnf_instances"].append(vnfi)
212
213 # 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
218 # 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:
221 vlinks = self.nsd["virtual_links"]
222 # constituent virtual links are not checked
223 # 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")]
228
229 GK.net.deployed_elines.extend(eline_fwd_links)
230 GK.net.deployed_elans.extend(elan_fwd_links)
231
232 # 5a. deploy E-Line links
233 self._connect_elines(eline_fwd_links, instance_uuid)
234
235 # 5b. deploy E-LAN links
236 self._connect_elans(elan_fwd_links, instance_uuid)
237
238 # 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"])
242
243 LOG.info("Service started. Instance id: %r" % instance_uuid)
244 return instance_uuid
245
246 def stop_service(self, instance_uuid):
247 """
248 This method stops a running service instance.
249 It iterates over all VNF instances, stopping them each
250 and removing them from their data center.
251
252 :param instance_uuid: the uuid of the service instance to be stopped
253 """
254 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
259 # trigger stop skripts in vnf instances and wait a few seconds for
260 # completion
261 self._trigger_emulator_stop_scripts_in_vnfis(vnf_instances)
262 time.sleep(VNF_STOP_WAIT_TIME)
263
264 for v in vnf_instances:
265 self._stop_vnfi(v)
266
267 for sap_name in self.saps_ext:
268 ext_sap = self.saps[sap_name]
269 target_dc = ext_sap.get("dc")
270 target_dc.removeExternalSAP(sap_name)
271 LOG.info("Stopping the SAP instance: %r in DC %r" %
272 (sap_name, target_dc))
273
274 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]
281
282 def _start_vnfd(self, vnfd, vnf_id, **kwargs):
283 """
284 Start a single VNFD of this service
285 :param vnfd: vnfd descriptor dict
286 :param vnf_id: unique id of this vnf in the nsd
287 :return:
288 """
289 # the vnf_name refers to the container image to be deployed
290 vnf_name = vnfd.get("name")
291
292 # 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
295 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)
298 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):
303 raise Exception(
304 "Docker image %r not found. Abort." % docker_name)
305
306 # 3. get the resource limits
307 res_req = u.get("resource_requirements")
308 cpu_list = res_req.get("cpu").get("cores")
309 if cpu_list is None:
310 cpu_list = res_req.get("cpu").get("vcpus")
311 if cpu_list is None:
312 cpu_list = "1"
313 cpu_bw = res_req.get("cpu").get("cpu_bw")
314 if not cpu_bw:
315 cpu_bw = 1
316 mem_num = str(res_req.get("memory").get("size"))
317 if len(mem_num) == 0:
318 mem_num = "2"
319 mem_unit = str(res_req.get("memory").get("size_unit"))
320 if str(mem_unit) == 0:
321 mem_unit = "GB"
322 mem_limit = float(mem_num)
323 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
329 mem_lim = int(mem_limit)
330 cpu_period, cpu_quota = self._calculate_cpu_cfs_values(
331 float(cpu_bw))
332
333 # check if we need to deploy the management ports
334 intfs = vnfd.get("connection_points", [])
335 mgmt_intf_names = []
336 if USE_DOCKER_MGMT:
337 mgmt_intfs = [vnf_id + ':' + intf['id']
338 for intf in intfs if intf.get('type') == 'management']
339 # check if any of these management interfaces are used in a
340 # management-type network in the nsd
341 for nsd_intf_name in mgmt_intfs:
342 vlinks = [l["connection_points_reference"]
343 for l in self.nsd.get("virtual_links", [])]
344 for link in vlinks:
345 if nsd_intf_name in link and self.check_mgmt_interface(
346 link):
347 # this is indeed a management interface and can be
348 # skipped
349 vnf_id, vnf_interface, vnf_sap_docker_name = parse_interface(
350 nsd_intf_name)
351 found_interfaces = [
352 intf for intf in intfs if intf.get('id') == vnf_interface]
353 intfs.remove(found_interfaces[0])
354 mgmt_intf_names.append(vnf_interface)
355
356 # 4. generate the volume paths for the docker container
357 volumes = list()
358 # a volume to extract log files
359 docker_log_path = "/tmp/results/%s/%s" % (self.uuid, vnf_id)
360 LOG.debug("LOG path for vnf %s is %s." % (vnf_id, docker_log_path))
361 if not os.path.exists(docker_log_path):
362 LOG.debug("Creating folder %s" % docker_log_path)
363 os.makedirs(docker_log_path)
364
365 volumes.append(docker_log_path + ":/mnt/share/")
366
367 # 5. do the dc.startCompute(name="foobar") call to run the container
368 # TODO consider flavors, and other annotations
369 # TODO: get all vnf id's from the nsd for this vnfd and use those as dockername
370 # use the vnf_id in the nsd as docker name
371 # so deployed containers can be easily mapped back to the nsd
372 LOG.info("Starting %r as %r in DC %r" %
373 (vnf_name, vnf_id, vnfd.get("dc")))
374 LOG.debug("Interfaces for %r: %r" % (vnf_id, intfs))
375 vnfi = target_dc.startCompute(
376 vnf_id,
377 network=intfs,
378 image=docker_name,
379 flavor_name="small",
380 cpu_quota=cpu_quota,
381 cpu_period=cpu_period,
382 cpuset=cpu_list,
383 mem_limit=mem_lim,
384 volumes=volumes,
385 type=kwargs.get('type', 'docker'))
386
387 # rename the docker0 interfaces (eth0) to the management port name
388 # defined in the VNFD
389 if USE_DOCKER_MGMT:
390 for intf_name in mgmt_intf_names:
391 self._vnf_reconfigure_network(
392 vnfi, 'eth0', new_name=intf_name)
393
394 return vnfi
395
396 def _stop_vnfi(self, vnfi):
397 """
398 Stop a VNF instance.
399
400 :param vnfi: vnf instance to be stopped
401 """
402 # Find the correct datacenter
403 status = vnfi.getStatus()
404 dc = vnfi.datacenter
405
406 # stop the vnfi
407 LOG.info("Stopping the vnf instance contained in %r in DC %r" %
408 (status["name"], dc))
409 dc.stopCompute(status["name"])
410
411 def _get_vnf_instance(self, instance_uuid, vnf_id):
412 """
413 Returns the Docker object for the given VNF id (or Docker name).
414 :param instance_uuid: UUID of the service instance to search in.
415 :param name: VNF name or Docker name. We are fuzzy here.
416 :return:
417 """
418 dn = vnf_id
419 for vnfi in self.instances[instance_uuid]["vnf_instances"]:
420 if vnfi.name == dn:
421 return vnfi
422 LOG.warning("No container with name: {0} found.".format(dn))
423 return None
424
425 @staticmethod
426 def _vnf_reconfigure_network(vnfi, if_name, net_str=None, new_name=None):
427 """
428 Reconfigure the network configuration of a specific interface
429 of a running container.
430 :param vnfi: container instance
431 :param if_name: interface name
432 :param net_str: network configuration string, e.g., 1.2.3.4/24
433 :return:
434 """
435
436 # assign new ip address
437 if net_str is not None:
438 intf = vnfi.intf(intf=if_name)
439 if intf is not None:
440 intf.setIP(net_str)
441 LOG.debug("Reconfigured network of %s:%s to %r" %
442 (vnfi.name, if_name, net_str))
443 else:
444 LOG.warning("Interface not found: %s:%s. Network reconfiguration skipped." % (
445 vnfi.name, if_name))
446
447 if new_name is not None:
448 vnfi.cmd('ip link set', if_name, 'down')
449 vnfi.cmd('ip link set', if_name, 'name', new_name)
450 vnfi.cmd('ip link set', new_name, 'up')
451 LOG.debug("Reconfigured interface name of %s:%s to %s" %
452 (vnfi.name, if_name, new_name))
453
454 def _trigger_emulator_start_scripts_in_vnfis(self, vnfi_list):
455 for vnfi in vnfi_list:
456 config = vnfi.dcinfo.get("Config", dict())
457 env = config.get("Env", list())
458 for env_var in env:
459 var, cmd = map(str.strip, map(str, env_var.split('=', 1)))
460 LOG.debug("%r = %r" % (var, cmd))
461 if var == "SON_EMU_CMD":
462 LOG.info("Executing entry point script in %r: %r" %
463 (vnfi.name, cmd))
464 # execute command in new thread to ensure that GK is not
465 # blocked by VNF
466 t = threading.Thread(target=vnfi.cmdPrint, args=(cmd,))
467 t.daemon = True
468 t.start()
469
470 def _trigger_emulator_stop_scripts_in_vnfis(self, vnfi_list):
471 for vnfi in vnfi_list:
472 config = vnfi.dcinfo.get("Config", dict())
473 env = config.get("Env", list())
474 for env_var in env:
475 var, cmd = map(str.strip, map(str, env_var.split('=', 1)))
476 if var == "SON_EMU_CMD_STOP":
477 LOG.info("Executing stop script in %r: %r" %
478 (vnfi.name, cmd))
479 # execute command in new thread to ensure that GK is not
480 # blocked by VNF
481 t = threading.Thread(target=vnfi.cmdPrint, args=(cmd,))
482 t.daemon = True
483 t.start()
484
485 def _unpack_service_package(self):
486 """
487 unzip *.son file and store contents in CATALOG_FOLDER/services/<service_uuid>/
488 """
489 LOG.info("Unzipping: %r" % self.package_file_path)
490 with zipfile.ZipFile(self.package_file_path, "r") as z:
491 z.extractall(self.package_content_path)
492
493 def _load_package_descriptor(self):
494 """
495 Load the main package descriptor YAML and keep it as dict.
496 :return:
497 """
498 self.manifest = load_yaml(
499 os.path.join(
500 self.package_content_path, "META-INF/MANIFEST.MF"))
501
502 def _load_nsd(self):
503 """
504 Load the entry NSD YAML and keep it as dict.
505 :return:
506 """
507 if "entry_service_template" in self.manifest:
508 nsd_path = os.path.join(
509 self.package_content_path,
510 make_relative_path(self.manifest.get("entry_service_template")))
511 self.nsd = load_yaml(nsd_path)
512 GK.net.deployed_nsds.append(self.nsd)
513 # create dict to find the vnf_name for any vnf id
514 self.vnf_id2vnf_name = defaultdict(lambda: "NotExistingNode",
515 reduce(lambda x, y: dict(x, **y),
516 map(lambda d: {d["vnf_id"]: d["vnf_name"]},
517 self.nsd["network_functions"])))
518
519 LOG.debug("Loaded NSD: %r" % self.nsd.get("name"))
520
521 def _load_vnfd(self):
522 """
523 Load all VNFD YAML files referenced in MANIFEST.MF and keep them in dict.
524 :return:
525 """
526
527 # first make a list of all the vnfds in the package
528 vnfd_set = dict()
529 if "package_content" in self.manifest:
530 for pc in self.manifest.get("package_content"):
531 if pc.get(
532 "content-type") == "application/sonata.function_descriptor":
533 vnfd_path = os.path.join(
534 self.package_content_path,
535 make_relative_path(pc.get("name")))
536 vnfd = load_yaml(vnfd_path)
537 vnfd_set[vnfd.get("name")] = vnfd
538 # then link each vnf_id in the nsd to its vnfd
539 for vnf_id in self.vnf_id2vnf_name:
540 vnf_name = self.vnf_id2vnf_name[vnf_id]
541 self.vnfds[vnf_id] = vnfd_set[vnf_name]
542 LOG.debug("Loaded VNFD: {0} id: {1}".format(vnf_name, vnf_id))
543
544 def _load_saps(self):
545 # create list of all SAPs
546 # check if we need to deploy management ports
547 if USE_DOCKER_MGMT:
548 SAPs = [p for p in self.nsd["connection_points"]
549 if 'management' not in p.get('type')]
550 else:
551 SAPs = [p for p in self.nsd["connection_points"]]
552
553 for sap in SAPs:
554 # endpoint needed in this service
555 sap_id, sap_interface, sap_docker_name = parse_interface(sap['id'])
556 # make sure SAP has type set (default internal)
557 sap["type"] = sap.get("type", 'internal')
558
559 # Each Service Access Point (connection_point) in the nsd is an IP
560 # address on the host
561 if sap["type"] == "external":
562 # add to vnfds to calculate placement later on
563 sap_net = SAP_SUBNETS.pop(0)
564 self.saps[sap_docker_name] = {
565 "name": sap_docker_name, "type": "external", "net": sap_net}
566 # add SAP vnf to list in the NSD so it is deployed later on
567 # each SAP gets a unique VNFD and vnf_id in the NSD and custom
568 # type (only defined in the dummygatekeeper)
569 self.nsd["network_functions"].append(
570 {"vnf_id": sap_docker_name, "vnf_name": sap_docker_name, "vnf_type": "sap_ext"})
571
572 # Each Service Access Point (connection_point) in the nsd is
573 # getting its own container (default)
574 elif sap["type"] == "internal" or sap["type"] == "management":
575 # add SAP to self.vnfds
576 if SAP_VNFD is None:
577 sapfile = pkg_resources.resource_filename(
578 __name__, "sap_vnfd.yml")
579 else:
580 sapfile = SAP_VNFD
581 sap_vnfd = load_yaml(sapfile)
582 sap_vnfd["connection_points"][0]["id"] = sap_interface
583 sap_vnfd["name"] = sap_docker_name
584 sap_vnfd["type"] = "internal"
585 # add to vnfds to calculate placement later on and deploy
586 self.saps[sap_docker_name] = sap_vnfd
587 # add SAP vnf to list in the NSD so it is deployed later on
588 # each SAP get a unique VNFD and vnf_id in the NSD
589 self.nsd["network_functions"].append(
590 {"vnf_id": sap_docker_name, "vnf_name": sap_docker_name, "vnf_type": "sap_int"})
591
592 LOG.debug("Loaded SAP: name: {0}, type: {1}".format(
593 sap_docker_name, sap['type']))
594
595 # create sap lists
596 self.saps_ext = [self.saps[sap]['name']
597 for sap in self.saps if self.saps[sap]["type"] == "external"]
598 self.saps_int = [self.saps[sap]['name']
599 for sap in self.saps if self.saps[sap]["type"] == "internal"]
600
601 def _start_sap(self, sap, instance_uuid):
602 if not DEPLOY_SAP:
603 return
604
605 LOG.info('start SAP: {0} ,type: {1}'.format(sap['name'], sap['type']))
606 if sap["type"] == "internal":
607 vnfi = None
608 if not GK_STANDALONE_MODE:
609 vnfi = self._start_vnfd(sap, sap['name'], type='sap_int')
610 self.instances[instance_uuid]["vnf_instances"].append(vnfi)
611
612 elif sap["type"] == "external":
613 target_dc = sap.get("dc")
614 # add interface to dc switch
615 target_dc.attachExternalSAP(sap['name'], sap['net'])
616
617 def _connect_elines(self, eline_fwd_links, instance_uuid):
618 """
619 Connect all E-LINE links in the NSD
620 :param eline_fwd_links: list of E-LINE links in the NSD
621 :param: instance_uuid of the service
622 :return:
623 """
624 # cookie is used as identifier for the flowrules installed by the dummygatekeeper
625 # eg. different services get a unique cookie for their flowrules
626 cookie = 1
627 for link in eline_fwd_links:
628 # check if we need to deploy this link when its a management link:
629 if USE_DOCKER_MGMT:
630 if self.check_mgmt_interface(
631 link["connection_points_reference"]):
632 continue
633
634 src_id, src_if_name, src_sap_id = parse_interface(
635 link["connection_points_reference"][0])
636 dst_id, dst_if_name, dst_sap_id = parse_interface(
637 link["connection_points_reference"][1])
638
639 setChaining = False
640 # check if there is a SAP in the link and chain everything together
641 if src_sap_id in self.saps and dst_sap_id in self.saps:
642 LOG.info(
643 '2 SAPs cannot be chained together : {0} - {1}'.format(src_sap_id, dst_sap_id))
644 continue
645
646 elif src_sap_id in self.saps_ext:
647 src_id = src_sap_id
648 # set intf name to None so the chaining function will choose
649 # the first one
650 src_if_name = None
651 dst_vnfi = self._get_vnf_instance(instance_uuid, dst_id)
652 if dst_vnfi is not None:
653 # choose first ip address in sap subnet
654 sap_net = self.saps[src_sap_id]['net']
655 sap_ip = "{0}/{1}".format(str(sap_net[2]),
656 sap_net.prefixlen)
657 self._vnf_reconfigure_network(
658 dst_vnfi, dst_if_name, sap_ip)
659 setChaining = True
660
661 elif dst_sap_id in self.saps_ext:
662 dst_id = dst_sap_id
663 # set intf name to None so the chaining function will choose
664 # the first one
665 dst_if_name = None
666 src_vnfi = self._get_vnf_instance(instance_uuid, src_id)
667 if src_vnfi is not None:
668 sap_net = self.saps[dst_sap_id]['net']
669 sap_ip = "{0}/{1}".format(str(sap_net[2]),
670 sap_net.prefixlen)
671 self._vnf_reconfigure_network(
672 src_vnfi, src_if_name, sap_ip)
673 setChaining = True
674
675 # Link between 2 VNFs
676 else:
677 # make sure we use the correct sap vnf name
678 if src_sap_id in self.saps_int:
679 src_id = src_sap_id
680 if dst_sap_id in self.saps_int:
681 dst_id = dst_sap_id
682 # re-configure the VNFs IP assignment and ensure that a new
683 # subnet is used for each E-Link
684 src_vnfi = self._get_vnf_instance(instance_uuid, src_id)
685 dst_vnfi = self._get_vnf_instance(instance_uuid, dst_id)
686 if src_vnfi is not None and dst_vnfi is not None:
687 eline_net = ELINE_SUBNETS.pop(0)
688 ip1 = "{0}/{1}".format(str(eline_net[1]),
689 eline_net.prefixlen)
690 ip2 = "{0}/{1}".format(str(eline_net[2]),
691 eline_net.prefixlen)
692 self._vnf_reconfigure_network(src_vnfi, src_if_name, ip1)
693 self._vnf_reconfigure_network(dst_vnfi, dst_if_name, ip2)
694 setChaining = True
695
696 # Set the chaining
697 if setChaining:
698 GK.net.setChain(
699 src_id, dst_id,
700 vnf_src_interface=src_if_name, vnf_dst_interface=dst_if_name,
701 bidirectional=BIDIRECTIONAL_CHAIN, cmd="add-flow", cookie=cookie, priority=10)
702 LOG.debug(
703 "Setting up E-Line link. (%s:%s) -> (%s:%s)" % (
704 src_id, src_if_name, dst_id, dst_if_name))
705
706 def _connect_elans(self, elan_fwd_links, instance_uuid):
707 """
708 Connect all E-LAN links in the NSD
709 :param elan_fwd_links: list of E-LAN links in the NSD
710 :param: instance_uuid of the service
711 :return:
712 """
713 for link in elan_fwd_links:
714 # check if we need to deploy this link when its a management link:
715 if USE_DOCKER_MGMT:
716 if self.check_mgmt_interface(
717 link["connection_points_reference"]):
718 continue
719
720 elan_vnf_list = []
721 # check if an external SAP is in the E-LAN (then a subnet is
722 # already defined)
723 intfs_elan = [intf for intf in link["connection_points_reference"]]
724 lan_sap = self.check_ext_saps(intfs_elan)
725 if lan_sap:
726 lan_net = self.saps[lan_sap]['net']
727 lan_hosts = list(lan_net.hosts())
728 else:
729 lan_net = ELAN_SUBNETS.pop(0)
730 lan_hosts = list(lan_net.hosts())
731
732 # generate lan ip address for all interfaces except external SAPs
733 for intf in link["connection_points_reference"]:
734
735 # skip external SAPs, they already have an ip
736 vnf_id, vnf_interface, vnf_sap_docker_name = parse_interface(
737 intf)
738 if vnf_sap_docker_name in self.saps_ext:
739 elan_vnf_list.append(
740 {'name': vnf_sap_docker_name, 'interface': vnf_interface})
741 continue
742
743 ip_address = "{0}/{1}".format(str(lan_hosts.pop(0)),
744 lan_net.prefixlen)
745 vnf_id, intf_name, vnf_sap_id = parse_interface(intf)
746
747 # make sure we use the correct sap vnf name
748 src_docker_name = vnf_id
749 if vnf_sap_id in self.saps_int:
750 src_docker_name = vnf_sap_id
751 vnf_id = vnf_sap_id
752
753 LOG.debug(
754 "Setting up E-LAN interface. (%s:%s) -> %s" % (
755 vnf_id, intf_name, ip_address))
756
757 # re-configure the VNFs IP assignment and ensure that a new subnet is used for each E-LAN
758 # E-LAN relies on the learning switch capability of Ryu which has to be turned on in the topology
759 # (DCNetwork(controller=RemoteController, enable_learning=True)), so no explicit chaining is necessary.
760 vnfi = self._get_vnf_instance(instance_uuid, vnf_id)
761 if vnfi is not None:
762 self._vnf_reconfigure_network(vnfi, intf_name, ip_address)
763 # add this vnf and interface to the E-LAN for tagging
764 elan_vnf_list.append(
765 {'name': src_docker_name, 'interface': intf_name})
766
767 # install the VLAN tags for this E-LAN
768 GK.net.setLAN(elan_vnf_list)
769
770 def _load_docker_files(self):
771 """
772 Get all paths to Dockerfiles from VNFDs and store them in dict.
773 :return:
774 """
775 for k, v in self.vnfds.iteritems():
776 for vu in v.get("virtual_deployment_units"):
777 if vu.get("vm_image_format") == "docker":
778 vm_image = vu.get("vm_image")
779 docker_path = os.path.join(
780 self.package_content_path,
781 make_relative_path(vm_image))
782 self.local_docker_files[k] = docker_path
783 LOG.debug("Found Dockerfile (%r): %r" % (k, docker_path))
784
785 def _load_docker_urls(self):
786 """
787 Get all URLs to pre-build docker images in some repo.
788 :return:
789 """
790 # also merge sap dicts, because internal saps also need a docker
791 # container
792 all_vnfs = self.vnfds.copy()
793 all_vnfs.update(self.saps)
794
795 for k, v in all_vnfs.iteritems():
796 for vu in v.get("virtual_deployment_units", {}):
797 if vu.get("vm_image_format") == "docker":
798 url = vu.get("vm_image")
799 if url is not None:
800 url = url.replace("http://", "")
801 self.remote_docker_image_urls[k] = url
802 LOG.debug("Found Docker image URL (%r): %r" %
803 (k, self.remote_docker_image_urls[k]))
804
805 def _build_images_from_dockerfiles(self):
806 """
807 Build Docker images for each local Dockerfile found in the package: self.local_docker_files
808 """
809 if GK_STANDALONE_MODE:
810 return # do not build anything in standalone mode
811 dc = DockerClient()
812 LOG.info("Building %d Docker images (this may take several minutes) ..." % len(
813 self.local_docker_files))
814 for k, v in self.local_docker_files.iteritems():
815 for line in dc.build(path=v.replace(
816 "Dockerfile", ""), tag=k, rm=False, nocache=False):
817 LOG.debug("DOCKER BUILD: %s" % line)
818 LOG.info("Docker image created: %s" % k)
819
820 def _pull_predefined_dockerimages(self):
821 """
822 If the package contains URLs to pre-build Docker images, we download them with this method.
823 """
824 dc = DockerClient()
825 for url in self.remote_docker_image_urls.itervalues():
826 # only pull if not present (speedup for development)
827 if not FORCE_PULL:
828 if len(dc.images.list(name=url)) > 0:
829 LOG.debug("Image %r present. Skipping pull." % url)
830 continue
831 LOG.info("Pulling image: %r" % url)
832 # this seems to fail with latest docker api version 2.0.2
833 # dc.images.pull(url,
834 # insecure_registry=True)
835 # using docker cli instead
836 cmd = ["docker",
837 "pull",
838 url,
839 ]
840 Popen(cmd).wait()
841
842 def _check_docker_image_exists(self, image_name):
843 """
844 Query the docker service and check if the given image exists
845 :param image_name: name of the docker image
846 :return:
847 """
848 return len(DockerClient().images.list(name=image_name)) > 0
849
850 def _calculate_placement(self, algorithm):
851 """
852 Do placement by adding the a field "dc" to
853 each VNFD that points to one of our
854 data center objects known to the gatekeeper.
855 """
856 assert(len(self.vnfds) > 0)
857 assert(len(GK.dcs) > 0)
858 # instantiate algorithm an place
859 p = algorithm()
860 p.place(self.nsd, self.vnfds, self.saps, GK.dcs)
861 LOG.info("Using placement algorithm: %r" % p.__class__.__name__)
862 # lets print the placement result
863 for name, vnfd in self.vnfds.iteritems():
864 LOG.info("Placed VNF %r on DC %r" % (name, str(vnfd.get("dc"))))
865 for sap in self.saps:
866 sap_dict = self.saps[sap]
867 LOG.info("Placed SAP %r on DC %r" % (sap, str(sap_dict.get("dc"))))
868
869 def _calculate_cpu_cfs_values(self, cpu_time_percentage):
870 """
871 Calculate cpu period and quota for CFS
872 :param cpu_time_percentage: percentage of overall CPU to be used
873 :return: cpu_period, cpu_quota
874 """
875 if cpu_time_percentage is None:
876 return -1, -1
877 if cpu_time_percentage < 0:
878 return -1, -1
879 # (see: https://www.kernel.org/doc/Documentation/scheduler/sched-bwc.txt)
880 # Attention minimum cpu_quota is 1ms (micro)
881 cpu_period = 1000000 # lets consider a fixed period of 1000000 microseconds for now
882 LOG.debug("cpu_period is %r, cpu_percentage is %r" %
883 (cpu_period, cpu_time_percentage))
884 # calculate the fraction of cpu time for this container
885 cpu_quota = cpu_period * cpu_time_percentage
886 # ATTENTION >= 1000 to avoid a invalid argument system error ... no
887 # idea why
888 if cpu_quota < 1000:
889 LOG.debug("cpu_quota before correcting: %r" % cpu_quota)
890 cpu_quota = 1000
891 LOG.warning("Increased CPU quota to avoid system error.")
892 LOG.debug("Calculated: cpu_period=%f / cpu_quota=%f" %
893 (cpu_period, cpu_quota))
894 return int(cpu_period), int(cpu_quota)
895
896 def check_ext_saps(self, intf_list):
897 # check if the list of interfacs contains an external SAP
898 saps_ext = [self.saps[sap]['name']
899 for sap in self.saps if self.saps[sap]["type"] == "external"]
900 for intf_name in intf_list:
901 vnf_id, vnf_interface, vnf_sap_docker_name = parse_interface(
902 intf_name)
903 if vnf_sap_docker_name in saps_ext:
904 return vnf_sap_docker_name
905
906 def check_mgmt_interface(self, intf_list):
907 SAPs_mgmt = [p.get('id') for p in self.nsd["connection_points"]
908 if 'management' in p.get('type')]
909 for intf_name in intf_list:
910 if intf_name in SAPs_mgmt:
911 return True
912
913
914 """
915 Some (simple) placement algorithms
916 """
917
918
919 class FirstDcPlacement(object):
920 """
921 Placement: Always use one and the same data center from the GK.dcs dict.
922 """
923
924 def place(self, nsd, vnfds, saps, dcs):
925 for id, vnfd in vnfds.iteritems():
926 vnfd["dc"] = list(dcs.itervalues())[0]
927
928
929 class RoundRobinDcPlacement(object):
930 """
931 Placement: Distribute VNFs across all available DCs in a round robin fashion.
932 """
933
934 def place(self, nsd, vnfds, saps, dcs):
935 c = 0
936 dcs_list = list(dcs.itervalues())
937 for id, vnfd in vnfds.iteritems():
938 vnfd["dc"] = dcs_list[c % len(dcs_list)]
939 c += 1 # inc. c to use next DC
940
941
942 class RoundRobinDcPlacementWithSAPs(object):
943 """
944 Placement: Distribute VNFs across all available DCs in a round robin fashion,
945 every SAP is instantiated on the same DC as the connected VNF.
946 """
947
948 def place(self, nsd, vnfds, saps, dcs):
949
950 # place vnfs
951 c = 0
952 dcs_list = list(dcs.itervalues())
953 for id, vnfd in vnfds.iteritems():
954 vnfd["dc"] = dcs_list[c % len(dcs_list)]
955 c += 1 # inc. c to use next DC
956
957 # place SAPs
958 vlinks = nsd.get("virtual_links", [])
959 eline_fwd_links = [l for l in vlinks if (
960 l["connectivity_type"] == "E-Line")]
961 elan_fwd_links = [l for l in vlinks if (
962 l["connectivity_type"] == "E-LAN")]
963
964 # SAPs on E-Line links are placed on the same DC as the VNF on the
965 # E-Line
966 for link in eline_fwd_links:
967 src_id, src_if_name, src_sap_id = parse_interface(
968 link["connection_points_reference"][0])
969 dst_id, dst_if_name, dst_sap_id = parse_interface(
970 link["connection_points_reference"][1])
971
972 # check if there is a SAP in the link
973 if src_sap_id in saps:
974 # get dc where connected vnf is mapped to
975 dc = vnfds[dst_id]['dc']
976 saps[src_sap_id]['dc'] = dc
977
978 if dst_sap_id in saps:
979 # get dc where connected vnf is mapped to
980 dc = vnfds[src_id]['dc']
981 saps[dst_sap_id]['dc'] = dc
982
983 # SAPs on E-LANs are placed on a random DC
984 dcs_list = list(dcs.itervalues())
985 dc_len = len(dcs_list)
986 for link in elan_fwd_links:
987 for intf in link["connection_points_reference"]:
988 # find SAP interfaces
989 intf_id, intf_name, intf_sap_id = parse_interface(intf)
990 if intf_sap_id in saps:
991 dc = dcs_list[randint(0, dc_len - 1)]
992 saps[intf_sap_id]['dc'] = dc
993
994
995 """
996 Resource definitions and API endpoints
997 """
998
999
1000 class Packages(fr.Resource):
1001
1002 def post(self):
1003 """
1004 Upload a *.son service package to the dummy gatekeeper.
1005
1006 We expect request with a *.son file and store it in UPLOAD_FOLDER
1007 :return: UUID
1008 """
1009 try:
1010 # get file contents
1011 LOG.info("POST /packages called")
1012 # lets search for the package in the request
1013 is_file_object = False # make API more robust: file can be in data or in files field
1014 if "package" in request.files:
1015 son_file = request.files["package"]
1016 is_file_object = True
1017 elif len(request.data) > 0:
1018 son_file = request.data
1019 else:
1020 return {"service_uuid": None, "size": 0, "sha1": None,
1021 "error": "upload failed. file not found."}, 500
1022 # generate a uuid to reference this package
1023 service_uuid = str(uuid.uuid4())
1024 file_hash = hashlib.sha1(str(son_file)).hexdigest()
1025 # ensure that upload folder exists
1026 ensure_dir(UPLOAD_FOLDER)
1027 upload_path = os.path.join(UPLOAD_FOLDER, "%s.son" % service_uuid)
1028 # store *.son file to disk
1029 if is_file_object:
1030 son_file.save(upload_path)
1031 else:
1032 with open(upload_path, 'wb') as f:
1033 f.write(son_file)
1034 size = os.path.getsize(upload_path)
1035
1036 # first stop and delete any other running services
1037 if AUTO_DELETE:
1038 service_list = copy.copy(GK.services)
1039 for service_uuid in service_list:
1040 instances_list = copy.copy(
1041 GK.services[service_uuid].instances)
1042 for instance_uuid in instances_list:
1043 # valid service and instance UUID, stop service
1044 GK.services.get(service_uuid).stop_service(
1045 instance_uuid)
1046 LOG.info("service instance with uuid %r stopped." %
1047 instance_uuid)
1048
1049 # create a service object and register it
1050 s = Service(service_uuid, file_hash, upload_path)
1051 GK.register_service_package(service_uuid, s)
1052
1053 # automatically deploy the service
1054 if AUTO_DEPLOY:
1055 # ok, we have a service uuid, lets start the service
1056 reset_subnets()
1057 GK.services.get(service_uuid).start_service()
1058
1059 # generate the JSON result
1060 return {"service_uuid": service_uuid, "size": size,
1061 "sha1": file_hash, "error": None}, 201
1062 except BaseException:
1063 LOG.exception("Service package upload failed:")
1064 return {"service_uuid": None, "size": 0,
1065 "sha1": None, "error": "upload failed"}, 500
1066
1067 def get(self):
1068 """
1069 Return a list of UUID's of uploaded service packages.
1070 :return: dict/list
1071 """
1072 LOG.info("GET /packages")
1073 return {"service_uuid_list": list(GK.services.iterkeys())}
1074
1075
1076 class Instantiations(fr.Resource):
1077
1078 def post(self):
1079 """
1080 Instantiate a service specified by its UUID.
1081 Will return a new UUID to identify the running service instance.
1082 :return: UUID
1083 """
1084 LOG.info("POST /instantiations (or /requests) called")
1085 # try to extract the service uuid from the request
1086 json_data = request.get_json(force=True)
1087 service_uuid = json_data.get("service_uuid")
1088
1089 # lets be a bit fuzzy here to make testing easier
1090 if (service_uuid is None or service_uuid ==
1091 "latest") and len(GK.services) > 0:
1092 # if we don't get a service uuid, we simple start the first service
1093 # in the list
1094 service_uuid = list(GK.services.iterkeys())[0]
1095 if service_uuid in GK.services:
1096 # ok, we have a service uuid, lets start the service
1097 service_instance_uuid = GK.services.get(
1098 service_uuid).start_service()
1099 return {"service_instance_uuid": service_instance_uuid}, 201
1100 return "Service not found", 404
1101
1102 def get(self):
1103 """
1104 Returns a list of UUIDs containing all running services.
1105 :return: dict / list
1106 """
1107 LOG.info("GET /instantiations")
1108 return {"service_instantiations_list": [
1109 list(s.instances.iterkeys()) for s in GK.services.itervalues()]}
1110
1111 def delete(self):
1112 """
1113 Stops a running service specified by its service and instance UUID.
1114 """
1115 # try to extract the service and instance UUID from the request
1116 json_data = request.get_json(force=True)
1117 service_uuid = json_data.get("service_uuid")
1118 instance_uuid = json_data.get("service_instance_uuid")
1119
1120 # try to be fuzzy
1121 if service_uuid is None and len(GK.services) > 0:
1122 # if we don't get a service uuid, we simply stop the last service
1123 # in the list
1124 service_uuid = list(GK.services.iterkeys())[0]
1125 if instance_uuid is None and len(
1126 GK.services[service_uuid].instances) > 0:
1127 instance_uuid = list(
1128 GK.services[service_uuid].instances.iterkeys())[0]
1129
1130 if service_uuid in GK.services and instance_uuid in GK.services[service_uuid].instances:
1131 # valid service and instance UUID, stop service
1132 GK.services.get(service_uuid).stop_service(instance_uuid)
1133 return "service instance with uuid %r stopped." % instance_uuid, 200
1134 return "Service not found", 404
1135
1136
1137 class Exit(fr.Resource):
1138
1139 def put(self):
1140 """
1141 Stop the running Containernet instance regardless of data transmitted
1142 """
1143 list(GK.dcs.values())[0].net.stop()
1144
1145
1146 def initialize_GK():
1147 global GK
1148 GK = Gatekeeper()
1149
1150
1151 # create a single, global GK object
1152 GK = None
1153 initialize_GK()
1154 # setup Flask
1155 app = Flask(__name__)
1156 app.config['MAX_CONTENT_LENGTH'] = 512 * 1024 * 1024 # 512 MB max upload
1157 api = fr.Api(app)
1158 # define endpoints
1159 api.add_resource(Packages, '/packages', '/api/v2/packages')
1160 api.add_resource(Instantiations, '/instantiations',
1161 '/api/v2/instantiations', '/api/v2/requests')
1162 api.add_resource(Exit, '/emulator/exit')
1163
1164
1165 def start_rest_api(host, port, datacenters=dict()):
1166 GK.dcs = datacenters
1167 GK.net = get_dc_network()
1168 # start the Flask server (not the best performance but ok for our use case)
1169 app.run(host=host,
1170 port=port,
1171 debug=True,
1172 use_reloader=False # this is needed to run Flask in a non-main thread
1173 )
1174
1175
1176 def ensure_dir(name):
1177 if not os.path.exists(name):
1178 os.makedirs(name)
1179
1180
1181 def load_yaml(path):
1182 with open(path, "r") as f:
1183 try:
1184 r = yaml.load(f)
1185 except yaml.YAMLError as exc:
1186 LOG.exception("YAML parse error: %r" % str(exc))
1187 r = dict()
1188 return r
1189
1190
1191 def make_relative_path(path):
1192 if path.startswith("file://"):
1193 path = path.replace("file://", "", 1)
1194 if path.startswith("/"):
1195 path = path.replace("/", "", 1)
1196 return path
1197
1198
1199 def get_dc_network():
1200 """
1201 retrieve the DCnetwork where this dummygatekeeper (GK) connects to.
1202 Assume at least 1 datacenter is connected to this GK, and that all datacenters belong to the same DCNetwork
1203 :return:
1204 """
1205 assert (len(GK.dcs) > 0)
1206 return GK.dcs.values()[0].net
1207
1208
1209 def parse_interface(interface_name):
1210 """
1211 convert the interface name in the nsd to the according vnf_id, vnf_interface names
1212 :param interface_name:
1213 :return:
1214 """
1215
1216 if ':' in interface_name:
1217 vnf_id, vnf_interface = interface_name.split(':')
1218 vnf_sap_docker_name = interface_name.replace(':', '_')
1219 else:
1220 vnf_id = interface_name
1221 vnf_interface = interface_name
1222 vnf_sap_docker_name = interface_name
1223
1224 return vnf_id, vnf_interface, vnf_sap_docker_name
1225
1226
1227 def reset_subnets():
1228 # private subnet definitions for the generated interfaces
1229 # 10.10.xxx.0/24
1230 global SAP_SUBNETS
1231 SAP_SUBNETS = generate_subnets('10.10', 0, subnet_size=50, mask=30)
1232 # 10.20.xxx.0/30
1233 global ELAN_SUBNETS
1234 ELAN_SUBNETS = generate_subnets('10.20', 0, subnet_size=50, mask=24)
1235 # 10.30.xxx.0/30
1236 global ELINE_SUBNETS
1237 ELINE_SUBNETS = generate_subnets('10.30', 0, subnet_size=50, mask=30)
1238
1239
1240 if __name__ == '__main__':
1241 """
1242 Lets allow to run the API in standalone mode.
1243 """
1244 GK_STANDALONE_MODE = True
1245 logging.getLogger("werkzeug").setLevel(logging.INFO)
1246 start_rest_api("0.0.0.0", 8000)