blob: c3d88023e66f500d0a2a416e5f27a0064e4095b6 [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
peustermbdfab7e2016-03-14 16:03:30 +010042from docker import Client as DockerClient
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
peusterme26487b2016-03-08 14:00:21 +010047
peusterm398cd3b2016-03-21 15:04:54 +010048logging.basicConfig()
peusterm786cd542016-03-14 14:12:17 +010049LOG = logging.getLogger("sonata-dummy-gatekeeper")
50LOG.setLevel(logging.DEBUG)
peusterme26487b2016-03-08 14:00:21 +010051logging.getLogger("werkzeug").setLevel(logging.WARNING)
52
peusterm92237dc2016-03-21 15:45:58 +010053GK_STORAGE = "/tmp/son-dummy-gk/"
54UPLOAD_FOLDER = os.path.join(GK_STORAGE, "uploads/")
55CATALOG_FOLDER = os.path.join(GK_STORAGE, "catalog/")
peusterme26487b2016-03-08 14:00:21 +010056
peusterm82d406e2016-05-02 20:52:06 +020057# Enable Dockerfile build functionality
58BUILD_DOCKERFILE = False
59
peusterm398cd3b2016-03-21 15:04:54 +010060# flag to indicate that we run without the emulator (only the bare API for integration testing)
61GK_STANDALONE_MODE = False
62
peusterm56356cb2016-05-03 10:43:43 +020063# should a new version of an image be pulled even if its available
wtaverni5b23b662016-06-20 12:26:21 +020064FORCE_PULL = False
peusterme26487b2016-03-08 14:00:21 +010065
stevenvanrossemdb2f9432016-08-20 00:01:11 +020066# Automatically deploy SAPs (endpoints) of the service as new containers
peustermb1cf5372016-08-23 14:02:09 +020067# Attention: This is not a configuration switch but a global variable! Don't change its default value.
stevenvanrossemdb2f9432016-08-20 00:01:11 +020068DEPLOY_SAP = False
69
peusterme26487b2016-03-08 14:00:21 +010070class Gatekeeper(object):
71
72 def __init__(self):
peusterm786cd542016-03-14 14:12:17 +010073 self.services = dict()
peusterm082378b2016-03-16 20:14:22 +010074 self.dcs = dict()
peusterm3444ae42016-03-16 20:46:41 +010075 self.vnf_counter = 0 # used to generate short names for VNFs (Mininet limitation)
peusterm786cd542016-03-14 14:12:17 +010076 LOG.info("Create SONATA dummy gatekeeper.")
peusterme26487b2016-03-08 14:00:21 +010077
peusterm786cd542016-03-14 14:12:17 +010078 def register_service_package(self, service_uuid, service):
79 """
80 register new service package
81 :param service_uuid
82 :param service object
83 """
84 self.services[service_uuid] = service
85 # lets perform all steps needed to onboard the service
86 service.onboard()
87
peusterm3444ae42016-03-16 20:46:41 +010088 def get_next_vnf_name(self):
89 self.vnf_counter += 1
peusterm398cd3b2016-03-21 15:04:54 +010090 return "vnf%d" % self.vnf_counter
peusterm3444ae42016-03-16 20:46:41 +010091
peusterm786cd542016-03-14 14:12:17 +010092
93class Service(object):
94 """
95 This class represents a NS uploaded as a *.son package to the
96 dummy gatekeeper.
97 Can have multiple running instances of this service.
98 """
99
100 def __init__(self,
101 service_uuid,
102 package_file_hash,
103 package_file_path):
104 self.uuid = service_uuid
105 self.package_file_hash = package_file_hash
106 self.package_file_path = package_file_path
107 self.package_content_path = os.path.join(CATALOG_FOLDER, "services/%s" % self.uuid)
peusterm7ec665d2016-03-14 15:20:44 +0100108 self.manifest = None
109 self.nsd = None
110 self.vnfds = dict()
peustermbdfab7e2016-03-14 16:03:30 +0100111 self.local_docker_files = dict()
peusterm82d406e2016-05-02 20:52:06 +0200112 self.remote_docker_image_urls = dict()
peusterm786cd542016-03-14 14:12:17 +0100113 self.instances = dict()
peusterm6b5224d2016-07-20 13:20:31 +0200114 self.vnf_name2docker_name = dict()
stevenvanrossemdb2f9432016-08-20 00:01:11 +0200115 self.sap_identifiers = set()
peusterm6b5224d2016-07-20 13:20:31 +0200116 # lets generate a set of subnet configurations used for e-line chaining setup
117 self.eline_subnets_src = generate_subnet_strings(50, start=200, subnet_size=24, ip=1)
118 self.eline_subnets_dst = generate_subnet_strings(50, start=200, subnet_size=24, ip=2)
peusterme26487b2016-03-08 14:00:21 +0100119
stevenvanrossem6d5019a2016-08-12 23:00:22 +0200120
peusterm786cd542016-03-14 14:12:17 +0100121 def onboard(self):
122 """
123 Do all steps to prepare this service to be instantiated
124 :return:
125 """
126 # 1. extract the contents of the package and store them in our catalog
127 self._unpack_service_package()
128 # 2. read in all descriptor files
peusterm7ec665d2016-03-14 15:20:44 +0100129 self._load_package_descriptor()
130 self._load_nsd()
131 self._load_vnfd()
stevenvanrossemdb2f9432016-08-20 00:01:11 +0200132 if DEPLOY_SAP:
133 self._load_saps()
peusterm786cd542016-03-14 14:12:17 +0100134 # 3. prepare container images (e.g. download or build Dockerfile)
peusterm82d406e2016-05-02 20:52:06 +0200135 if BUILD_DOCKERFILE:
136 self._load_docker_files()
137 self._build_images_from_dockerfiles()
138 else:
139 self._load_docker_urls()
140 self._pull_predefined_dockerimages()
peusterm3bb86bf2016-08-15 09:47:57 +0200141 LOG.info("On-boarded service: %r" % self.manifest.get("name"))
peusterm7ec665d2016-03-14 15:20:44 +0100142
peusterm082378b2016-03-16 20:14:22 +0100143 def start_service(self):
peusterm3444ae42016-03-16 20:46:41 +0100144 """
145 This methods creates and starts a new service instance.
146 It computes placements, iterates over all VNFDs, and starts
147 each VNFD as a Docker container in the data center selected
148 by the placement algorithm.
149 :return:
150 """
151 LOG.info("Starting service %r" % self.uuid)
stevenvanrossemd87fe472016-05-11 11:34:34 +0200152
peusterm3444ae42016-03-16 20:46:41 +0100153 # 1. each service instance gets a new uuid to identify it
peusterm082378b2016-03-16 20:14:22 +0100154 instance_uuid = str(uuid.uuid4())
peusterm3444ae42016-03-16 20:46:41 +0100155 # build a instances dict (a bit like a NSR :))
156 self.instances[instance_uuid] = dict()
157 self.instances[instance_uuid]["vnf_instances"] = list()
stevenvanrossemd87fe472016-05-11 11:34:34 +0200158
stevenvanrossemdb2f9432016-08-20 00:01:11 +0200159 # 2. Configure the chaining of the network functions (currently only E-Line and E-LAN links supported)
160 vnf_id2vnf_name = defaultdict(lambda: "NotExistingNode",
161 reduce(lambda x, y: dict(x, **y),
162 map(lambda d: {d["vnf_id"]: d["vnf_name"]},
163 self.nsd["network_functions"])))
164
165 # 3. compute placement of this service instance (adds DC names to VNFDs)
peusterm398cd3b2016-03-21 15:04:54 +0100166 if not GK_STANDALONE_MODE:
peustermf6459542016-08-31 19:00:17 +0200167 #self._calculate_placement(FirstDcPlacement)
168 self._calculate_placement(RoundRobinDcPlacement)
peusterm3444ae42016-03-16 20:46:41 +0100169 # iterate over all vnfds that we have to start
peusterm082378b2016-03-16 20:14:22 +0100170 for vnfd in self.vnfds.itervalues():
peusterm398cd3b2016-03-21 15:04:54 +0100171 vnfi = None
172 if not GK_STANDALONE_MODE:
173 vnfi = self._start_vnfd(vnfd)
174 self.instances[instance_uuid]["vnf_instances"].append(vnfi)
stevenvanrossemd87fe472016-05-11 11:34:34 +0200175
stevenvanrossemd87fe472016-05-11 11:34:34 +0200176 vlinks = self.nsd["virtual_links"]
177 fwd_links = self.nsd["forwarding_graphs"][0]["constituent_virtual_links"]
178 eline_fwd_links = [l for l in vlinks if (l["id"] in fwd_links) and (l["connectivity_type"] == "E-Line")]
stevenvanrossem6d5019a2016-08-12 23:00:22 +0200179 elan_fwd_links = [l for l in vlinks if (l["id"] in fwd_links) and (l["connectivity_type"] == "E-LAN")]
stevenvanrossemd87fe472016-05-11 11:34:34 +0200180
stevenvanrossemdb2f9432016-08-20 00:01:11 +0200181 # 4a. deploy E-Line links
stevenvanrossemaa6d3a72016-08-10 13:23:24 +0200182 # cookie is used as identifier for the flowrules installed by the dummygatekeeper
183 # eg. different services get a unique cookie for their flowrules
184 cookie = 1
stevenvanrossemd87fe472016-05-11 11:34:34 +0200185 for link in eline_fwd_links:
peusterm6b5224d2016-07-20 13:20:31 +0200186 src_id, src_if_name = link["connection_points_reference"][0].split(":")
187 dst_id, dst_if_name = link["connection_points_reference"][1].split(":")
stevenvanrossemd87fe472016-05-11 11:34:34 +0200188
stevenvanrossemdb2f9432016-08-20 00:01:11 +0200189 # check if there is a SAP in the link
190 if src_id in self.sap_identifiers:
191 src_docker_name = "{0}_{1}".format(src_id, src_if_name)
192 src_id = src_docker_name
193 else:
194 src_docker_name = src_id
195
196 if dst_id in self.sap_identifiers:
197 dst_docker_name = "{0}_{1}".format(dst_id, dst_if_name)
198 dst_id = dst_docker_name
199 else:
200 dst_docker_name = dst_id
201
peusterm6b5224d2016-07-20 13:20:31 +0200202 src_name = vnf_id2vnf_name[src_id]
203 dst_name = vnf_id2vnf_name[dst_id]
peusterm9fb74ec2016-06-16 11:30:55 +0200204
peusterm6b5224d2016-07-20 13:20:31 +0200205 LOG.debug(
206 "Setting up E-Line link. %s(%s:%s) -> %s(%s:%s)" % (
207 src_name, src_id, src_if_name, dst_name, dst_id, dst_if_name))
208
209 if (src_name in self.vnfds) and (dst_name in self.vnfds):
210 network = self.vnfds[src_name].get("dc").net # there should be a cleaner way to find the DCNetwork
peusterm6b5224d2016-07-20 13:20:31 +0200211 LOG.debug(src_docker_name)
212 ret = network.setChain(
213 src_docker_name, dst_docker_name,
214 vnf_src_interface=src_if_name, vnf_dst_interface=dst_if_name,
stevenvanrossem6d5019a2016-08-12 23:00:22 +0200215 bidirectional=True, cmd="add-flow", cookie=cookie, priority=10)
stevenvanrossemd87fe472016-05-11 11:34:34 +0200216
peusterm6b5224d2016-07-20 13:20:31 +0200217 # re-configure the VNFs IP assignment and ensure that a new subnet is used for each E-Link
218 src_vnfi = self._get_vnf_instance(instance_uuid, src_name)
219 if src_vnfi is not None:
220 self._vnf_reconfigure_network(src_vnfi, src_if_name, self.eline_subnets_src.pop(0))
221 dst_vnfi = self._get_vnf_instance(instance_uuid, dst_name)
222 if dst_vnfi is not None:
223 self._vnf_reconfigure_network(dst_vnfi, dst_if_name, self.eline_subnets_dst.pop(0))
224
stevenvanrossemdb2f9432016-08-20 00:01:11 +0200225 # 4b. deploy E-LAN links
stevenvanrossem6d5019a2016-08-12 23:00:22 +0200226 base = 10
227 for link in elan_fwd_links:
228 # generate lan ip address
229 ip = 1
230 for intf in link["connection_points_reference"]:
231 ip_address = generate_lan_string("10.0", base, subnet_size=24, ip=ip)
232 vnf_id, intf_name = intf.split(":")
stevenvanrossemdb2f9432016-08-20 00:01:11 +0200233 if vnf_id in self.sap_identifiers:
234 src_docker_name = "{0}_{1}".format(vnf_id, intf_name)
235 vnf_id = src_docker_name
stevenvanrossem6d5019a2016-08-12 23:00:22 +0200236 vnf_name = vnf_id2vnf_name[vnf_id]
237 LOG.debug(
238 "Setting up E-LAN link. %s(%s:%s) -> %s" % (
239 vnf_name, vnf_id, intf_name, ip_address))
240
241 if vnf_name in self.vnfds:
242 # re-configure the VNFs IP assignment and ensure that a new subnet is used for each E-LAN
peustermb1cf5372016-08-23 14:02:09 +0200243 # E-LAN relies on the learning switch capability of Ryu which has to be turned on in the topology
244 # (DCNetwork(controller=RemoteController, enable_learning=True)), so no explicit chaining is necessary.
stevenvanrossem6d5019a2016-08-12 23:00:22 +0200245 vnfi = self._get_vnf_instance(instance_uuid, vnf_name)
246 if vnfi is not None:
247 self._vnf_reconfigure_network(vnfi, intf_name, ip_address)
248 # increase for the next ip address on this E-LAN
249 ip += 1
250 # increase the base ip address for the next E-LAN
251 base += 1
252
stevenvanrossemdb2f9432016-08-20 00:01:11 +0200253 # 5. run the emulator specific entrypoint scripts in the VNFIs of this service instance
peusterm8484b902016-06-21 09:03:35 +0200254 self._trigger_emulator_start_scripts_in_vnfis(self.instances[instance_uuid]["vnf_instances"])
255
peusterm3444ae42016-03-16 20:46:41 +0100256 LOG.info("Service started. Instance id: %r" % instance_uuid)
peusterm082378b2016-03-16 20:14:22 +0100257 return instance_uuid
258
peusterm398cd3b2016-03-21 15:04:54 +0100259 def _start_vnfd(self, vnfd):
260 """
261 Start a single VNFD of this service
262 :param vnfd: vnfd descriptor dict
263 :return:
264 """
265 # iterate over all deployment units within each VNFDs
266 for u in vnfd.get("virtual_deployment_units"):
267 # 1. get the name of the docker image to start and the assigned DC
peusterm56356cb2016-05-03 10:43:43 +0200268 vnf_name = vnfd.get("name")
269 if vnf_name not in self.remote_docker_image_urls:
270 raise Exception("No image name for %r found. Abort." % vnf_name)
271 docker_name = self.remote_docker_image_urls.get(vnf_name)
peusterm398cd3b2016-03-21 15:04:54 +0100272 target_dc = vnfd.get("dc")
273 # 2. perform some checks to ensure we can start the container
274 assert(docker_name is not None)
275 assert(target_dc is not None)
276 if not self._check_docker_image_exists(docker_name):
277 raise Exception("Docker image %r not found. Abort." % docker_name)
278 # 3. do the dc.startCompute(name="foobar") call to run the container
279 # TODO consider flavors, and other annotations
stevenvanrossemd87fe472016-05-11 11:34:34 +0200280 intfs = vnfd.get("connection_points")
stevenvanrossemeae73082016-08-05 16:22:12 +0200281
stevenvanrossemdb2f9432016-08-20 00:01:11 +0200282 # TODO: get all vnf id's from the nsd for this vnfd and use those as dockername
stevenvanrossem11a021f2016-08-05 13:43:00 +0200283 # use the vnf_id in the nsd as docker name
284 # so deployed containers can be easily mapped back to the nsd
285 vnf_name2id = defaultdict(lambda: "NotExistingNode",
286 reduce(lambda x, y: dict(x, **y),
287 map(lambda d: {d["vnf_name"]: d["vnf_id"]},
288 self.nsd["network_functions"])))
289 self.vnf_name2docker_name[vnf_name] = vnf_name2id[vnf_name]
290 # self.vnf_name2docker_name[vnf_name] = GK.get_next_vnf_name()
291
peusterm6b5224d2016-07-20 13:20:31 +0200292 LOG.info("Starting %r as %r in DC %r" % (vnf_name, self.vnf_name2docker_name[vnf_name], vnfd.get("dc")))
peusterm761c14d2016-07-19 09:31:19 +0200293 LOG.debug("Interfaces for %r: %r" % (vnf_name, intfs))
peusterm6b5224d2016-07-20 13:20:31 +0200294 vnfi = target_dc.startCompute(self.vnf_name2docker_name[vnf_name], network=intfs, image=docker_name, flavor_name="small")
peusterm398cd3b2016-03-21 15:04:54 +0100295 return vnfi
296
peusterm6b5224d2016-07-20 13:20:31 +0200297 def _get_vnf_instance(self, instance_uuid, name):
298 """
299 Returns the Docker object for the given VNF name (or Docker name).
300 :param instance_uuid: UUID of the service instance to search in.
301 :param name: VNF name or Docker name. We are fuzzy here.
302 :return:
303 """
304 dn = name
305 if name in self.vnf_name2docker_name:
306 dn = self.vnf_name2docker_name[name]
307 for vnfi in self.instances[instance_uuid]["vnf_instances"]:
308 if vnfi.name == dn:
309 return vnfi
310 LOG.warning("No container with name: %r found.")
311 return None
312
313 @staticmethod
314 def _vnf_reconfigure_network(vnfi, if_name, net_str):
315 """
316 Reconfigure the network configuration of a specific interface
317 of a running container.
318 :param vnfi: container instacne
319 :param if_name: interface name
320 :param net_str: network configuration string, e.g., 1.2.3.4/24
321 :return:
322 """
323 intf = vnfi.intf(intf=if_name)
324 if intf is not None:
325 intf.setIP(net_str)
326 LOG.debug("Reconfigured network of %s:%s to %r" % (vnfi.name, if_name, net_str))
327 else:
328 LOG.warning("Interface not found: %s:%s. Network reconfiguration skipped." % (vnfi.name, if_name))
329
330
peusterm8484b902016-06-21 09:03:35 +0200331 def _trigger_emulator_start_scripts_in_vnfis(self, vnfi_list):
332 for vnfi in vnfi_list:
333 config = vnfi.dcinfo.get("Config", dict())
334 env = config.get("Env", list())
335 for env_var in env:
336 if "SON_EMU_CMD=" in env_var:
337 cmd = str(env_var.split("=")[1])
peusterme66edf72016-08-23 11:11:12 +0200338 LOG.info("Executing entry point script in %r: %r" % (vnfi.name, cmd))
339 # execute command in new thread to ensure that GK is not blocked by VNF
340 t = threading.Thread(target=vnfi.cmdPrint, args=(cmd,))
341 t.daemon = True
342 t.start()
peusterm8484b902016-06-21 09:03:35 +0200343
peusterm786cd542016-03-14 14:12:17 +0100344 def _unpack_service_package(self):
345 """
346 unzip *.son file and store contents in CATALOG_FOLDER/services/<service_uuid>/
347 """
peusterm82d406e2016-05-02 20:52:06 +0200348 LOG.info("Unzipping: %r" % self.package_file_path)
peusterm786cd542016-03-14 14:12:17 +0100349 with zipfile.ZipFile(self.package_file_path, "r") as z:
350 z.extractall(self.package_content_path)
351
peusterm82d406e2016-05-02 20:52:06 +0200352
peusterm7ec665d2016-03-14 15:20:44 +0100353 def _load_package_descriptor(self):
354 """
355 Load the main package descriptor YAML and keep it as dict.
356 :return:
357 """
358 self.manifest = load_yaml(
359 os.path.join(
360 self.package_content_path, "META-INF/MANIFEST.MF"))
361
362 def _load_nsd(self):
363 """
364 Load the entry NSD YAML and keep it as dict.
365 :return:
366 """
367 if "entry_service_template" in self.manifest:
368 nsd_path = os.path.join(
369 self.package_content_path,
370 make_relative_path(self.manifest.get("entry_service_template")))
371 self.nsd = load_yaml(nsd_path)
peusterm757fe9a2016-04-04 14:11:58 +0200372 LOG.debug("Loaded NSD: %r" % self.nsd.get("name"))
peusterm7ec665d2016-03-14 15:20:44 +0100373
374 def _load_vnfd(self):
375 """
376 Load all VNFD YAML files referenced in MANIFEST.MF and keep them in dict.
377 :return:
378 """
379 if "package_content" in self.manifest:
380 for pc in self.manifest.get("package_content"):
381 if pc.get("content-type") == "application/sonata.function_descriptor":
382 vnfd_path = os.path.join(
383 self.package_content_path,
384 make_relative_path(pc.get("name")))
385 vnfd = load_yaml(vnfd_path)
peusterm757fe9a2016-04-04 14:11:58 +0200386 self.vnfds[vnfd.get("name")] = vnfd
387 LOG.debug("Loaded VNFD: %r" % vnfd.get("name"))
peusterm7ec665d2016-03-14 15:20:44 +0100388
stevenvanrossemdb2f9432016-08-20 00:01:11 +0200389 def _load_saps(self):
390 # Each Service Access Point (connection_point) in the nsd is getting its own container
391 SAPs = [p["id"] for p in self.nsd["connection_points"] if p["type"] == "interface"]
392 for sap in SAPs:
393 # endpoints needed in this service
394 sap_vnf_id, sap_vnf_interface = sap.split(':')
peusterm7e2187d2016-09-06 10:42:12 +0200395 # Fix: lets fix the name of the SAP interface to "sap0"
396 sap_vnf_interface = "sap0"
stevenvanrossemdb2f9432016-08-20 00:01:11 +0200397 # set of the connection_point ids found in the nsd (in the examples this is 'ns')
398 self.sap_identifiers.add(sap_vnf_id)
399
400 sap_docker_name = sap.replace(':', '_')
401
402 # add SAP to self.vnfds
403 sapfile = pkg_resources.resource_filename(__name__, "sap_vnfd.yml")
404 sap_vnfd = load_yaml(sapfile)
405 sap_vnfd["connection_points"][0]["id"] = sap_vnf_interface
406 sap_vnfd["name"] = sap_docker_name
407 self.vnfds[sap_docker_name] = sap_vnfd
408 # add SAP vnf to list in the NSD so it is deployed later on
409 # each SAP get a unique VNFD and vnf_id in the NSD
410 self.nsd["network_functions"].append({"vnf_id": sap_docker_name, "vnf_name": sap_docker_name})
411 LOG.debug("Loaded SAP: %r" % sap_vnfd.get("name"))
412
peusterm7ec665d2016-03-14 15:20:44 +0100413 def _load_docker_files(self):
414 """
peusterm9d7d4b02016-03-23 19:56:44 +0100415 Get all paths to Dockerfiles from VNFDs and store them in dict.
peusterm7ec665d2016-03-14 15:20:44 +0100416 :return:
417 """
peusterm9d7d4b02016-03-23 19:56:44 +0100418 for k, v in self.vnfds.iteritems():
419 for vu in v.get("virtual_deployment_units"):
420 if vu.get("vm_image_format") == "docker":
421 vm_image = vu.get("vm_image")
peusterm7ec665d2016-03-14 15:20:44 +0100422 docker_path = os.path.join(
423 self.package_content_path,
peusterm9d7d4b02016-03-23 19:56:44 +0100424 make_relative_path(vm_image))
425 self.local_docker_files[k] = docker_path
peusterm56356cb2016-05-03 10:43:43 +0200426 LOG.debug("Found Dockerfile (%r): %r" % (k, docker_path))
peusterm7ec665d2016-03-14 15:20:44 +0100427
peusterm82d406e2016-05-02 20:52:06 +0200428 def _load_docker_urls(self):
429 """
430 Get all URLs to pre-build docker images in some repo.
431 :return:
432 """
433 for k, v in self.vnfds.iteritems():
434 for vu in v.get("virtual_deployment_units"):
435 if vu.get("vm_image_format") == "docker":
peusterm35ba4052016-05-02 21:21:14 +0200436 url = vu.get("vm_image")
437 if url is not None:
438 url = url.replace("http://", "")
439 self.remote_docker_image_urls[k] = url
peusterm56356cb2016-05-03 10:43:43 +0200440 LOG.debug("Found Docker image URL (%r): %r" % (k, self.remote_docker_image_urls[k]))
peusterm82d406e2016-05-02 20:52:06 +0200441
peustermbdfab7e2016-03-14 16:03:30 +0100442 def _build_images_from_dockerfiles(self):
443 """
444 Build Docker images for each local Dockerfile found in the package: self.local_docker_files
445 """
peusterm398cd3b2016-03-21 15:04:54 +0100446 if GK_STANDALONE_MODE:
447 return # do not build anything in standalone mode
peustermbdfab7e2016-03-14 16:03:30 +0100448 dc = DockerClient()
449 LOG.info("Building %d Docker images (this may take several minutes) ..." % len(self.local_docker_files))
450 for k, v in self.local_docker_files.iteritems():
451 for line in dc.build(path=v.replace("Dockerfile", ""), tag=k, rm=False, nocache=False):
452 LOG.debug("DOCKER BUILD: %s" % line)
453 LOG.info("Docker image created: %s" % k)
454
peusterm82d406e2016-05-02 20:52:06 +0200455 def _pull_predefined_dockerimages(self):
peustermbdfab7e2016-03-14 16:03:30 +0100456 """
457 If the package contains URLs to pre-build Docker images, we download them with this method.
458 """
peusterm35ba4052016-05-02 21:21:14 +0200459 dc = DockerClient()
460 for url in self.remote_docker_image_urls.itervalues():
peusterm56356cb2016-05-03 10:43:43 +0200461 if not FORCE_PULL: # only pull if not present (speedup for development)
462 if len(dc.images(name=url)) > 0:
463 LOG.debug("Image %r present. Skipping pull." % url)
464 continue
peusterm35ba4052016-05-02 21:21:14 +0200465 LOG.info("Pulling image: %r" % url)
466 dc.pull(url,
467 insecure_registry=True)
peusterm786cd542016-03-14 14:12:17 +0100468
peusterm3444ae42016-03-16 20:46:41 +0100469 def _check_docker_image_exists(self, image_name):
peusterm3f307142016-03-16 21:02:53 +0100470 """
471 Query the docker service and check if the given image exists
472 :param image_name: name of the docker image
473 :return:
474 """
475 return len(DockerClient().images(image_name)) > 0
peusterm3444ae42016-03-16 20:46:41 +0100476
peusterm082378b2016-03-16 20:14:22 +0100477 def _calculate_placement(self, algorithm):
478 """
479 Do placement by adding the a field "dc" to
480 each VNFD that points to one of our
481 data center objects known to the gatekeeper.
482 """
483 assert(len(self.vnfds) > 0)
484 assert(len(GK.dcs) > 0)
485 # instantiate algorithm an place
486 p = algorithm()
487 p.place(self.nsd, self.vnfds, GK.dcs)
488 LOG.info("Using placement algorithm: %r" % p.__class__.__name__)
489 # lets print the placement result
490 for name, vnfd in self.vnfds.iteritems():
491 LOG.info("Placed VNF %r on DC %r" % (name, str(vnfd.get("dc"))))
492
493
494"""
495Some (simple) placement algorithms
496"""
497
498
499class FirstDcPlacement(object):
500 """
501 Placement: Always use one and the same data center from the GK.dcs dict.
502 """
503 def place(self, nsd, vnfds, dcs):
504 for name, vnfd in vnfds.iteritems():
505 vnfd["dc"] = list(dcs.itervalues())[0]
506
peusterme26487b2016-03-08 14:00:21 +0100507
peustermf6459542016-08-31 19:00:17 +0200508class RoundRobinDcPlacement(object):
509 """
510 Placement: Distribute VNFs across all available DCs in a round robin fashion.
511 """
peustermf6459542016-08-31 19:00:17 +0200512 def place(self, nsd, vnfds, dcs):
513 c = 0
514 dcs_list = list(dcs.itervalues())
515 for name, vnfd in vnfds.iteritems():
516 vnfd["dc"] = dcs_list[c % len(dcs_list)]
517 c += 1 # inc. c to use next DC
518
519
520
521
peusterme26487b2016-03-08 14:00:21 +0100522"""
523Resource definitions and API endpoints
524"""
525
526
527class Packages(fr.Resource):
528
529 def post(self):
530 """
peusterm26455852016-03-08 14:23:53 +0100531 Upload a *.son service package to the dummy gatekeeper.
532
peusterme26487b2016-03-08 14:00:21 +0100533 We expect request with a *.son file and store it in UPLOAD_FOLDER
peusterm26455852016-03-08 14:23:53 +0100534 :return: UUID
peusterme26487b2016-03-08 14:00:21 +0100535 """
536 try:
537 # get file contents
wtavernib8d9ecb2016-03-25 15:18:31 +0100538 print(request.files)
peusterm593ca582016-03-30 19:55:01 +0200539 # lets search for the package in the request
540 if "package" in request.files:
541 son_file = request.files["package"]
542 # elif "file" in request.files:
543 # son_file = request.files["file"]
544 else:
545 return {"service_uuid": None, "size": 0, "sha1": None, "error": "upload failed. file not found."}, 500
peusterme26487b2016-03-08 14:00:21 +0100546 # generate a uuid to reference this package
547 service_uuid = str(uuid.uuid4())
peusterm786cd542016-03-14 14:12:17 +0100548 file_hash = hashlib.sha1(str(son_file)).hexdigest()
peusterme26487b2016-03-08 14:00:21 +0100549 # ensure that upload folder exists
550 ensure_dir(UPLOAD_FOLDER)
551 upload_path = os.path.join(UPLOAD_FOLDER, "%s.son" % service_uuid)
552 # store *.son file to disk
peusterm786cd542016-03-14 14:12:17 +0100553 son_file.save(upload_path)
peusterme26487b2016-03-08 14:00:21 +0100554 size = os.path.getsize(upload_path)
peusterm786cd542016-03-14 14:12:17 +0100555 # create a service object and register it
556 s = Service(service_uuid, file_hash, upload_path)
557 GK.register_service_package(service_uuid, s)
peusterme26487b2016-03-08 14:00:21 +0100558 # generate the JSON result
peusterm786cd542016-03-14 14:12:17 +0100559 return {"service_uuid": service_uuid, "size": size, "sha1": file_hash, "error": None}
peusterme26487b2016-03-08 14:00:21 +0100560 except Exception as ex:
peusterm786cd542016-03-14 14:12:17 +0100561 LOG.exception("Service package upload failed:")
peusterm593ca582016-03-30 19:55:01 +0200562 return {"service_uuid": None, "size": 0, "sha1": None, "error": "upload failed"}, 500
peusterme26487b2016-03-08 14:00:21 +0100563
564 def get(self):
peusterm26455852016-03-08 14:23:53 +0100565 """
566 Return a list of UUID's of uploaded service packages.
567 :return: dict/list
568 """
peusterm075b46a2016-07-20 17:08:00 +0200569 LOG.info("GET /packages")
peusterm786cd542016-03-14 14:12:17 +0100570 return {"service_uuid_list": list(GK.services.iterkeys())}
peusterme26487b2016-03-08 14:00:21 +0100571
572
573class Instantiations(fr.Resource):
574
575 def post(self):
peusterm26455852016-03-08 14:23:53 +0100576 """
577 Instantiate a service specified by its UUID.
578 Will return a new UUID to identify the running service instance.
579 :return: UUID
580 """
peusterm64b45502016-03-16 21:15:14 +0100581 # try to extract the service uuid from the request
peusterm26455852016-03-08 14:23:53 +0100582 json_data = request.get_json(force=True)
peusterm64b45502016-03-16 21:15:14 +0100583 service_uuid = json_data.get("service_uuid")
584
585 # lets be a bit fuzzy here to make testing easier
586 if service_uuid is None and len(GK.services) > 0:
587 # if we don't get a service uuid, we simple start the first service in the list
588 service_uuid = list(GK.services.iterkeys())[0]
589
peustermbea87372016-03-16 19:37:35 +0100590 if service_uuid in GK.services:
peusterm64b45502016-03-16 21:15:14 +0100591 # ok, we have a service uuid, lets start the service
peustermbea87372016-03-16 19:37:35 +0100592 service_instance_uuid = GK.services.get(service_uuid).start_service()
peusterm26455852016-03-08 14:23:53 +0100593 return {"service_instance_uuid": service_instance_uuid}
peustermbea87372016-03-16 19:37:35 +0100594 return "Service not found", 404
peusterme26487b2016-03-08 14:00:21 +0100595
596 def get(self):
peusterm26455852016-03-08 14:23:53 +0100597 """
598 Returns a list of UUIDs containing all running services.
599 :return: dict / list
600 """
peusterm075b46a2016-07-20 17:08:00 +0200601 LOG.info("GET /instantiations")
602 return {"service_instantiations_list": [
peusterm64b45502016-03-16 21:15:14 +0100603 list(s.instances.iterkeys()) for s in GK.services.itervalues()]}
peusterm786cd542016-03-14 14:12:17 +0100604
peusterme26487b2016-03-08 14:00:21 +0100605
606# create a single, global GK object
607GK = Gatekeeper()
608# setup Flask
609app = Flask(__name__)
610app.config['MAX_CONTENT_LENGTH'] = 512 * 1024 * 1024 # 512 MB max upload
611api = fr.Api(app)
612# define endpoints
peusterm593ca582016-03-30 19:55:01 +0200613api.add_resource(Packages, '/packages')
614api.add_resource(Instantiations, '/instantiations')
peusterme26487b2016-03-08 14:00:21 +0100615
616
peusterm082378b2016-03-16 20:14:22 +0100617def start_rest_api(host, port, datacenters=dict()):
peustermbea87372016-03-16 19:37:35 +0100618 GK.dcs = datacenters
peusterme26487b2016-03-08 14:00:21 +0100619 # start the Flask server (not the best performance but ok for our use case)
620 app.run(host=host,
621 port=port,
622 debug=True,
623 use_reloader=False # this is needed to run Flask in a non-main thread
624 )
625
626
627def ensure_dir(name):
628 if not os.path.exists(name):
peusterm7ec665d2016-03-14 15:20:44 +0100629 os.makedirs(name)
630
631
632def load_yaml(path):
633 with open(path, "r") as f:
634 try:
635 r = yaml.load(f)
636 except yaml.YAMLError as exc:
637 LOG.exception("YAML parse error")
638 r = dict()
639 return r
640
641
642def make_relative_path(path):
peusterm9d7d4b02016-03-23 19:56:44 +0100643 if path.startswith("file://"):
644 path = path.replace("file://", "", 1)
peusterm7ec665d2016-03-14 15:20:44 +0100645 if path.startswith("/"):
peusterm9d7d4b02016-03-23 19:56:44 +0100646 path = path.replace("/", "", 1)
peusterm7ec665d2016-03-14 15:20:44 +0100647 return path
648
649
stevenvanrossem6d5019a2016-08-12 23:00:22 +0200650def generate_lan_string(prefix, base, subnet_size=24, ip=0):
651 """
652 Helper to generate different network configuration strings.
653 """
654 r = "%s.%d.%d/%d" % (prefix, base, ip, subnet_size)
655 return r
656
657
peusterm6b5224d2016-07-20 13:20:31 +0200658def generate_subnet_strings(n, start=1, subnet_size=24, ip=0):
659 """
660 Helper to generate different network configuration strings.
661 """
662 r = list()
663 for i in range(start, start + n):
664 r.append("%d.0.0.%d/%d" % (i, ip, subnet_size))
665 return r
666
667
peusterme26487b2016-03-08 14:00:21 +0100668if __name__ == '__main__':
669 """
670 Lets allow to run the API in standalone mode.
671 """
peusterm398cd3b2016-03-21 15:04:54 +0100672 GK_STANDALONE_MODE = True
peusterme26487b2016-03-08 14:00:21 +0100673 logging.getLogger("werkzeug").setLevel(logging.INFO)
674 start_rest_api("0.0.0.0", 8000)
675