blob: 2aa712e4b07e73b25faa642c6e4adc5b227ef4b3 [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
peustermbdfab7e2016-03-14 16:03:30 +010041from docker import Client as DockerClient
peusterme26487b2016-03-08 14:00:21 +010042from flask import Flask, request
43import flask_restful as fr
wtaverni5b23b662016-06-20 12:26:21 +020044from collections import defaultdict
peusterme26487b2016-03-08 14:00:21 +010045
peusterm398cd3b2016-03-21 15:04:54 +010046logging.basicConfig()
peusterm786cd542016-03-14 14:12:17 +010047LOG = logging.getLogger("sonata-dummy-gatekeeper")
48LOG.setLevel(logging.DEBUG)
peusterme26487b2016-03-08 14:00:21 +010049logging.getLogger("werkzeug").setLevel(logging.WARNING)
50
peusterm92237dc2016-03-21 15:45:58 +010051GK_STORAGE = "/tmp/son-dummy-gk/"
52UPLOAD_FOLDER = os.path.join(GK_STORAGE, "uploads/")
53CATALOG_FOLDER = os.path.join(GK_STORAGE, "catalog/")
peusterme26487b2016-03-08 14:00:21 +010054
peusterm82d406e2016-05-02 20:52:06 +020055# Enable Dockerfile build functionality
56BUILD_DOCKERFILE = False
57
peusterm398cd3b2016-03-21 15:04:54 +010058# flag to indicate that we run without the emulator (only the bare API for integration testing)
59GK_STANDALONE_MODE = False
60
peusterm56356cb2016-05-03 10:43:43 +020061# should a new version of an image be pulled even if its available
wtaverni5b23b662016-06-20 12:26:21 +020062FORCE_PULL = False
peusterme26487b2016-03-08 14:00:21 +010063
64class Gatekeeper(object):
65
66 def __init__(self):
peusterm786cd542016-03-14 14:12:17 +010067 self.services = dict()
peusterm082378b2016-03-16 20:14:22 +010068 self.dcs = dict()
peusterm3444ae42016-03-16 20:46:41 +010069 self.vnf_counter = 0 # used to generate short names for VNFs (Mininet limitation)
peusterm786cd542016-03-14 14:12:17 +010070 LOG.info("Create SONATA dummy gatekeeper.")
peusterme26487b2016-03-08 14:00:21 +010071
peusterm786cd542016-03-14 14:12:17 +010072 def register_service_package(self, service_uuid, service):
73 """
74 register new service package
75 :param service_uuid
76 :param service object
77 """
78 self.services[service_uuid] = service
79 # lets perform all steps needed to onboard the service
80 service.onboard()
81
peusterm3444ae42016-03-16 20:46:41 +010082 def get_next_vnf_name(self):
83 self.vnf_counter += 1
peusterm398cd3b2016-03-21 15:04:54 +010084 return "vnf%d" % self.vnf_counter
peusterm3444ae42016-03-16 20:46:41 +010085
peusterm786cd542016-03-14 14:12:17 +010086
87class Service(object):
88 """
89 This class represents a NS uploaded as a *.son package to the
90 dummy gatekeeper.
91 Can have multiple running instances of this service.
92 """
93
94 def __init__(self,
95 service_uuid,
96 package_file_hash,
97 package_file_path):
98 self.uuid = service_uuid
99 self.package_file_hash = package_file_hash
100 self.package_file_path = package_file_path
101 self.package_content_path = os.path.join(CATALOG_FOLDER, "services/%s" % self.uuid)
peusterm7ec665d2016-03-14 15:20:44 +0100102 self.manifest = None
103 self.nsd = None
104 self.vnfds = dict()
peustermbdfab7e2016-03-14 16:03:30 +0100105 self.local_docker_files = dict()
peusterm82d406e2016-05-02 20:52:06 +0200106 self.remote_docker_image_urls = dict()
peusterm786cd542016-03-14 14:12:17 +0100107 self.instances = dict()
peusterm6b5224d2016-07-20 13:20:31 +0200108 self.vnf_name2docker_name = dict()
109 # lets generate a set of subnet configurations used for e-line chaining setup
110 self.eline_subnets_src = generate_subnet_strings(50, start=200, subnet_size=24, ip=1)
111 self.eline_subnets_dst = generate_subnet_strings(50, start=200, subnet_size=24, ip=2)
peusterme26487b2016-03-08 14:00:21 +0100112
stevenvanrossem6d5019a2016-08-12 23:00:22 +0200113
peusterm786cd542016-03-14 14:12:17 +0100114 def onboard(self):
115 """
116 Do all steps to prepare this service to be instantiated
117 :return:
118 """
119 # 1. extract the contents of the package and store them in our catalog
120 self._unpack_service_package()
121 # 2. read in all descriptor files
peusterm7ec665d2016-03-14 15:20:44 +0100122 self._load_package_descriptor()
123 self._load_nsd()
124 self._load_vnfd()
peusterm786cd542016-03-14 14:12:17 +0100125 # 3. prepare container images (e.g. download or build Dockerfile)
peusterm82d406e2016-05-02 20:52:06 +0200126 if BUILD_DOCKERFILE:
127 self._load_docker_files()
128 self._build_images_from_dockerfiles()
129 else:
130 self._load_docker_urls()
131 self._pull_predefined_dockerimages()
peusterm3bb86bf2016-08-15 09:47:57 +0200132 LOG.info("On-boarded service: %r" % self.manifest.get("name"))
peusterm7ec665d2016-03-14 15:20:44 +0100133
peusterm082378b2016-03-16 20:14:22 +0100134 def start_service(self):
peusterm3444ae42016-03-16 20:46:41 +0100135 """
136 This methods creates and starts a new service instance.
137 It computes placements, iterates over all VNFDs, and starts
138 each VNFD as a Docker container in the data center selected
139 by the placement algorithm.
140 :return:
141 """
142 LOG.info("Starting service %r" % self.uuid)
stevenvanrossemd87fe472016-05-11 11:34:34 +0200143
peusterm3444ae42016-03-16 20:46:41 +0100144 # 1. each service instance gets a new uuid to identify it
peusterm082378b2016-03-16 20:14:22 +0100145 instance_uuid = str(uuid.uuid4())
peusterm3444ae42016-03-16 20:46:41 +0100146 # build a instances dict (a bit like a NSR :))
147 self.instances[instance_uuid] = dict()
148 self.instances[instance_uuid]["vnf_instances"] = list()
stevenvanrossemd87fe472016-05-11 11:34:34 +0200149
peusterm3444ae42016-03-16 20:46:41 +0100150 # 2. compute placement of this service instance (adds DC names to VNFDs)
peusterm398cd3b2016-03-21 15:04:54 +0100151 if not GK_STANDALONE_MODE:
152 self._calculate_placement(FirstDcPlacement)
peusterm3444ae42016-03-16 20:46:41 +0100153 # iterate over all vnfds that we have to start
peusterm082378b2016-03-16 20:14:22 +0100154 for vnfd in self.vnfds.itervalues():
peusterm398cd3b2016-03-21 15:04:54 +0100155 vnfi = None
156 if not GK_STANDALONE_MODE:
157 vnfi = self._start_vnfd(vnfd)
158 self.instances[instance_uuid]["vnf_instances"].append(vnfi)
stevenvanrossemd87fe472016-05-11 11:34:34 +0200159
stevenvanrossema5aeb372016-08-18 17:32:24 +0200160 # 3. Configure the chaining of the network functions (currently only E-Line and E-LAN links supported)
peusterm6b5224d2016-07-20 13:20:31 +0200161 vnf_id2vnf_name = defaultdict(lambda: "NotExistingNode",
162 reduce(lambda x, y: dict(x, **y),
163 map(lambda d: {d["vnf_id"]: d["vnf_name"]},
wtaverni5b23b662016-06-20 12:26:21 +0200164 self.nsd["network_functions"])))
165
stevenvanrossemd87fe472016-05-11 11:34:34 +0200166 vlinks = self.nsd["virtual_links"]
167 fwd_links = self.nsd["forwarding_graphs"][0]["constituent_virtual_links"]
168 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 +0200169 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 +0200170
stevenvanrossem6d5019a2016-08-12 23:00:22 +0200171 # 3a. deploy E-Line links
stevenvanrossemaa6d3a72016-08-10 13:23:24 +0200172 # cookie is used as identifier for the flowrules installed by the dummygatekeeper
173 # eg. different services get a unique cookie for their flowrules
174 cookie = 1
stevenvanrossemd87fe472016-05-11 11:34:34 +0200175 for link in eline_fwd_links:
peusterm6b5224d2016-07-20 13:20:31 +0200176 src_id, src_if_name = link["connection_points_reference"][0].split(":")
177 dst_id, dst_if_name = link["connection_points_reference"][1].split(":")
stevenvanrossemd87fe472016-05-11 11:34:34 +0200178
peusterm6b5224d2016-07-20 13:20:31 +0200179 src_name = vnf_id2vnf_name[src_id]
180 dst_name = vnf_id2vnf_name[dst_id]
peusterm9fb74ec2016-06-16 11:30:55 +0200181
peusterm6b5224d2016-07-20 13:20:31 +0200182 LOG.debug(
183 "Setting up E-Line link. %s(%s:%s) -> %s(%s:%s)" % (
184 src_name, src_id, src_if_name, dst_name, dst_id, dst_if_name))
185
186 if (src_name in self.vnfds) and (dst_name in self.vnfds):
187 network = self.vnfds[src_name].get("dc").net # there should be a cleaner way to find the DCNetwork
188 src_docker_name = self.vnf_name2docker_name[src_name]
189 dst_docker_name = self.vnf_name2docker_name[dst_name]
190 LOG.debug(src_docker_name)
191 ret = network.setChain(
192 src_docker_name, dst_docker_name,
193 vnf_src_interface=src_if_name, vnf_dst_interface=dst_if_name,
stevenvanrossem6d5019a2016-08-12 23:00:22 +0200194 bidirectional=True, cmd="add-flow", cookie=cookie, priority=10)
stevenvanrossemd87fe472016-05-11 11:34:34 +0200195
peusterm6b5224d2016-07-20 13:20:31 +0200196 # re-configure the VNFs IP assignment and ensure that a new subnet is used for each E-Link
197 src_vnfi = self._get_vnf_instance(instance_uuid, src_name)
198 if src_vnfi is not None:
199 self._vnf_reconfigure_network(src_vnfi, src_if_name, self.eline_subnets_src.pop(0))
200 dst_vnfi = self._get_vnf_instance(instance_uuid, dst_name)
201 if dst_vnfi is not None:
202 self._vnf_reconfigure_network(dst_vnfi, dst_if_name, self.eline_subnets_dst.pop(0))
203
stevenvanrossem6d5019a2016-08-12 23:00:22 +0200204 # 3b. deploy E-LAN links
205 base = 10
206 for link in elan_fwd_links:
207 # generate lan ip address
208 ip = 1
209 for intf in link["connection_points_reference"]:
210 ip_address = generate_lan_string("10.0", base, subnet_size=24, ip=ip)
211 vnf_id, intf_name = intf.split(":")
212 vnf_name = vnf_id2vnf_name[vnf_id]
213 LOG.debug(
214 "Setting up E-LAN link. %s(%s:%s) -> %s" % (
215 vnf_name, vnf_id, intf_name, ip_address))
216
217 if vnf_name in self.vnfds:
218 # re-configure the VNFs IP assignment and ensure that a new subnet is used for each E-LAN
219 # E-LAN relies on the learning switch capability of the infrastructure switch in dockernet,
220 # so no explicit chaining is necessary
221 vnfi = self._get_vnf_instance(instance_uuid, vnf_name)
222 if vnfi is not None:
223 self._vnf_reconfigure_network(vnfi, intf_name, ip_address)
224 # increase for the next ip address on this E-LAN
225 ip += 1
226 # increase the base ip address for the next E-LAN
227 base += 1
228
229
230
peusterm8484b902016-06-21 09:03:35 +0200231 # 4. run the emulator specific entrypoint scripts in the VNFIs of this service instance
232 self._trigger_emulator_start_scripts_in_vnfis(self.instances[instance_uuid]["vnf_instances"])
233
peusterm3444ae42016-03-16 20:46:41 +0100234 LOG.info("Service started. Instance id: %r" % instance_uuid)
peusterm082378b2016-03-16 20:14:22 +0100235 return instance_uuid
236
peusterm398cd3b2016-03-21 15:04:54 +0100237 def _start_vnfd(self, vnfd):
238 """
239 Start a single VNFD of this service
240 :param vnfd: vnfd descriptor dict
241 :return:
242 """
243 # iterate over all deployment units within each VNFDs
244 for u in vnfd.get("virtual_deployment_units"):
245 # 1. get the name of the docker image to start and the assigned DC
peusterm56356cb2016-05-03 10:43:43 +0200246 vnf_name = vnfd.get("name")
247 if vnf_name not in self.remote_docker_image_urls:
248 raise Exception("No image name for %r found. Abort." % vnf_name)
249 docker_name = self.remote_docker_image_urls.get(vnf_name)
peusterm398cd3b2016-03-21 15:04:54 +0100250 target_dc = vnfd.get("dc")
251 # 2. perform some checks to ensure we can start the container
252 assert(docker_name is not None)
253 assert(target_dc is not None)
254 if not self._check_docker_image_exists(docker_name):
255 raise Exception("Docker image %r not found. Abort." % docker_name)
256 # 3. do the dc.startCompute(name="foobar") call to run the container
257 # TODO consider flavors, and other annotations
stevenvanrossemd87fe472016-05-11 11:34:34 +0200258 intfs = vnfd.get("connection_points")
stevenvanrossemeae73082016-08-05 16:22:12 +0200259
stevenvanrossem11a021f2016-08-05 13:43:00 +0200260 # use the vnf_id in the nsd as docker name
261 # so deployed containers can be easily mapped back to the nsd
262 vnf_name2id = defaultdict(lambda: "NotExistingNode",
263 reduce(lambda x, y: dict(x, **y),
264 map(lambda d: {d["vnf_name"]: d["vnf_id"]},
265 self.nsd["network_functions"])))
266 self.vnf_name2docker_name[vnf_name] = vnf_name2id[vnf_name]
267 # self.vnf_name2docker_name[vnf_name] = GK.get_next_vnf_name()
268
peusterm6b5224d2016-07-20 13:20:31 +0200269 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 +0200270 LOG.debug("Interfaces for %r: %r" % (vnf_name, intfs))
peusterm6b5224d2016-07-20 13:20:31 +0200271 vnfi = target_dc.startCompute(self.vnf_name2docker_name[vnf_name], network=intfs, image=docker_name, flavor_name="small")
peusterm398cd3b2016-03-21 15:04:54 +0100272 return vnfi
273
peusterm6b5224d2016-07-20 13:20:31 +0200274 def _get_vnf_instance(self, instance_uuid, name):
275 """
276 Returns the Docker object for the given VNF name (or Docker name).
277 :param instance_uuid: UUID of the service instance to search in.
278 :param name: VNF name or Docker name. We are fuzzy here.
279 :return:
280 """
281 dn = name
282 if name in self.vnf_name2docker_name:
283 dn = self.vnf_name2docker_name[name]
284 for vnfi in self.instances[instance_uuid]["vnf_instances"]:
285 if vnfi.name == dn:
286 return vnfi
287 LOG.warning("No container with name: %r found.")
288 return None
289
290 @staticmethod
291 def _vnf_reconfigure_network(vnfi, if_name, net_str):
292 """
293 Reconfigure the network configuration of a specific interface
294 of a running container.
295 :param vnfi: container instacne
296 :param if_name: interface name
297 :param net_str: network configuration string, e.g., 1.2.3.4/24
298 :return:
299 """
300 intf = vnfi.intf(intf=if_name)
301 if intf is not None:
302 intf.setIP(net_str)
303 LOG.debug("Reconfigured network of %s:%s to %r" % (vnfi.name, if_name, net_str))
304 else:
305 LOG.warning("Interface not found: %s:%s. Network reconfiguration skipped." % (vnfi.name, if_name))
306
307
peusterm8484b902016-06-21 09:03:35 +0200308 def _trigger_emulator_start_scripts_in_vnfis(self, vnfi_list):
309 for vnfi in vnfi_list:
310 config = vnfi.dcinfo.get("Config", dict())
311 env = config.get("Env", list())
312 for env_var in env:
313 if "SON_EMU_CMD=" in env_var:
314 cmd = str(env_var.split("=")[1])
315 LOG.info("Executing entrypoint script in %r: %r" % (vnfi.name, cmd))
316 vnfi.cmdPrint(cmd)
317
peusterm786cd542016-03-14 14:12:17 +0100318 def _unpack_service_package(self):
319 """
320 unzip *.son file and store contents in CATALOG_FOLDER/services/<service_uuid>/
321 """
peusterm82d406e2016-05-02 20:52:06 +0200322 LOG.info("Unzipping: %r" % self.package_file_path)
peusterm786cd542016-03-14 14:12:17 +0100323 with zipfile.ZipFile(self.package_file_path, "r") as z:
324 z.extractall(self.package_content_path)
325
peusterm82d406e2016-05-02 20:52:06 +0200326
peusterm7ec665d2016-03-14 15:20:44 +0100327 def _load_package_descriptor(self):
328 """
329 Load the main package descriptor YAML and keep it as dict.
330 :return:
331 """
332 self.manifest = load_yaml(
333 os.path.join(
334 self.package_content_path, "META-INF/MANIFEST.MF"))
335
336 def _load_nsd(self):
337 """
338 Load the entry NSD YAML and keep it as dict.
339 :return:
340 """
341 if "entry_service_template" in self.manifest:
342 nsd_path = os.path.join(
343 self.package_content_path,
344 make_relative_path(self.manifest.get("entry_service_template")))
345 self.nsd = load_yaml(nsd_path)
peusterm757fe9a2016-04-04 14:11:58 +0200346 LOG.debug("Loaded NSD: %r" % self.nsd.get("name"))
peusterm7ec665d2016-03-14 15:20:44 +0100347
348 def _load_vnfd(self):
349 """
350 Load all VNFD YAML files referenced in MANIFEST.MF and keep them in dict.
351 :return:
352 """
353 if "package_content" in self.manifest:
354 for pc in self.manifest.get("package_content"):
355 if pc.get("content-type") == "application/sonata.function_descriptor":
356 vnfd_path = os.path.join(
357 self.package_content_path,
358 make_relative_path(pc.get("name")))
359 vnfd = load_yaml(vnfd_path)
peusterm757fe9a2016-04-04 14:11:58 +0200360 self.vnfds[vnfd.get("name")] = vnfd
361 LOG.debug("Loaded VNFD: %r" % vnfd.get("name"))
peusterm7ec665d2016-03-14 15:20:44 +0100362
363 def _load_docker_files(self):
364 """
peusterm9d7d4b02016-03-23 19:56:44 +0100365 Get all paths to Dockerfiles from VNFDs and store them in dict.
peusterm7ec665d2016-03-14 15:20:44 +0100366 :return:
367 """
peusterm9d7d4b02016-03-23 19:56:44 +0100368 for k, v in self.vnfds.iteritems():
369 for vu in v.get("virtual_deployment_units"):
370 if vu.get("vm_image_format") == "docker":
371 vm_image = vu.get("vm_image")
peusterm7ec665d2016-03-14 15:20:44 +0100372 docker_path = os.path.join(
373 self.package_content_path,
peusterm9d7d4b02016-03-23 19:56:44 +0100374 make_relative_path(vm_image))
375 self.local_docker_files[k] = docker_path
peusterm56356cb2016-05-03 10:43:43 +0200376 LOG.debug("Found Dockerfile (%r): %r" % (k, docker_path))
peusterm7ec665d2016-03-14 15:20:44 +0100377
peusterm82d406e2016-05-02 20:52:06 +0200378 def _load_docker_urls(self):
379 """
380 Get all URLs to pre-build docker images in some repo.
381 :return:
382 """
383 for k, v in self.vnfds.iteritems():
384 for vu in v.get("virtual_deployment_units"):
385 if vu.get("vm_image_format") == "docker":
peusterm35ba4052016-05-02 21:21:14 +0200386 url = vu.get("vm_image")
387 if url is not None:
388 url = url.replace("http://", "")
389 self.remote_docker_image_urls[k] = url
peusterm56356cb2016-05-03 10:43:43 +0200390 LOG.debug("Found Docker image URL (%r): %r" % (k, self.remote_docker_image_urls[k]))
peusterm82d406e2016-05-02 20:52:06 +0200391
peustermbdfab7e2016-03-14 16:03:30 +0100392 def _build_images_from_dockerfiles(self):
393 """
394 Build Docker images for each local Dockerfile found in the package: self.local_docker_files
395 """
peusterm398cd3b2016-03-21 15:04:54 +0100396 if GK_STANDALONE_MODE:
397 return # do not build anything in standalone mode
peustermbdfab7e2016-03-14 16:03:30 +0100398 dc = DockerClient()
399 LOG.info("Building %d Docker images (this may take several minutes) ..." % len(self.local_docker_files))
400 for k, v in self.local_docker_files.iteritems():
401 for line in dc.build(path=v.replace("Dockerfile", ""), tag=k, rm=False, nocache=False):
402 LOG.debug("DOCKER BUILD: %s" % line)
403 LOG.info("Docker image created: %s" % k)
404
peusterm82d406e2016-05-02 20:52:06 +0200405 def _pull_predefined_dockerimages(self):
peustermbdfab7e2016-03-14 16:03:30 +0100406 """
407 If the package contains URLs to pre-build Docker images, we download them with this method.
408 """
peusterm35ba4052016-05-02 21:21:14 +0200409 dc = DockerClient()
410 for url in self.remote_docker_image_urls.itervalues():
peusterm56356cb2016-05-03 10:43:43 +0200411 if not FORCE_PULL: # only pull if not present (speedup for development)
412 if len(dc.images(name=url)) > 0:
413 LOG.debug("Image %r present. Skipping pull." % url)
414 continue
peusterm35ba4052016-05-02 21:21:14 +0200415 LOG.info("Pulling image: %r" % url)
416 dc.pull(url,
417 insecure_registry=True)
peusterm786cd542016-03-14 14:12:17 +0100418
peusterm3444ae42016-03-16 20:46:41 +0100419 def _check_docker_image_exists(self, image_name):
peusterm3f307142016-03-16 21:02:53 +0100420 """
421 Query the docker service and check if the given image exists
422 :param image_name: name of the docker image
423 :return:
424 """
425 return len(DockerClient().images(image_name)) > 0
peusterm3444ae42016-03-16 20:46:41 +0100426
peusterm082378b2016-03-16 20:14:22 +0100427 def _calculate_placement(self, algorithm):
428 """
429 Do placement by adding the a field "dc" to
430 each VNFD that points to one of our
431 data center objects known to the gatekeeper.
432 """
433 assert(len(self.vnfds) > 0)
434 assert(len(GK.dcs) > 0)
435 # instantiate algorithm an place
436 p = algorithm()
437 p.place(self.nsd, self.vnfds, GK.dcs)
438 LOG.info("Using placement algorithm: %r" % p.__class__.__name__)
439 # lets print the placement result
440 for name, vnfd in self.vnfds.iteritems():
441 LOG.info("Placed VNF %r on DC %r" % (name, str(vnfd.get("dc"))))
442
443
444"""
445Some (simple) placement algorithms
446"""
447
448
449class FirstDcPlacement(object):
450 """
451 Placement: Always use one and the same data center from the GK.dcs dict.
452 """
453 def place(self, nsd, vnfds, dcs):
454 for name, vnfd in vnfds.iteritems():
455 vnfd["dc"] = list(dcs.itervalues())[0]
456
peusterme26487b2016-03-08 14:00:21 +0100457
458"""
459Resource definitions and API endpoints
460"""
461
462
463class Packages(fr.Resource):
464
465 def post(self):
466 """
peusterm26455852016-03-08 14:23:53 +0100467 Upload a *.son service package to the dummy gatekeeper.
468
peusterme26487b2016-03-08 14:00:21 +0100469 We expect request with a *.son file and store it in UPLOAD_FOLDER
peusterm26455852016-03-08 14:23:53 +0100470 :return: UUID
peusterme26487b2016-03-08 14:00:21 +0100471 """
472 try:
473 # get file contents
wtavernib8d9ecb2016-03-25 15:18:31 +0100474 print(request.files)
peusterm593ca582016-03-30 19:55:01 +0200475 # lets search for the package in the request
476 if "package" in request.files:
477 son_file = request.files["package"]
478 # elif "file" in request.files:
479 # son_file = request.files["file"]
480 else:
481 return {"service_uuid": None, "size": 0, "sha1": None, "error": "upload failed. file not found."}, 500
peusterme26487b2016-03-08 14:00:21 +0100482 # generate a uuid to reference this package
483 service_uuid = str(uuid.uuid4())
peusterm786cd542016-03-14 14:12:17 +0100484 file_hash = hashlib.sha1(str(son_file)).hexdigest()
peusterme26487b2016-03-08 14:00:21 +0100485 # ensure that upload folder exists
486 ensure_dir(UPLOAD_FOLDER)
487 upload_path = os.path.join(UPLOAD_FOLDER, "%s.son" % service_uuid)
488 # store *.son file to disk
peusterm786cd542016-03-14 14:12:17 +0100489 son_file.save(upload_path)
peusterme26487b2016-03-08 14:00:21 +0100490 size = os.path.getsize(upload_path)
peusterm786cd542016-03-14 14:12:17 +0100491 # create a service object and register it
492 s = Service(service_uuid, file_hash, upload_path)
493 GK.register_service_package(service_uuid, s)
peusterme26487b2016-03-08 14:00:21 +0100494 # generate the JSON result
peusterm786cd542016-03-14 14:12:17 +0100495 return {"service_uuid": service_uuid, "size": size, "sha1": file_hash, "error": None}
peusterme26487b2016-03-08 14:00:21 +0100496 except Exception as ex:
peusterm786cd542016-03-14 14:12:17 +0100497 LOG.exception("Service package upload failed:")
peusterm593ca582016-03-30 19:55:01 +0200498 return {"service_uuid": None, "size": 0, "sha1": None, "error": "upload failed"}, 500
peusterme26487b2016-03-08 14:00:21 +0100499
500 def get(self):
peusterm26455852016-03-08 14:23:53 +0100501 """
502 Return a list of UUID's of uploaded service packages.
503 :return: dict/list
504 """
peusterm075b46a2016-07-20 17:08:00 +0200505 LOG.info("GET /packages")
peusterm786cd542016-03-14 14:12:17 +0100506 return {"service_uuid_list": list(GK.services.iterkeys())}
peusterme26487b2016-03-08 14:00:21 +0100507
508
509class Instantiations(fr.Resource):
510
511 def post(self):
peusterm26455852016-03-08 14:23:53 +0100512 """
513 Instantiate a service specified by its UUID.
514 Will return a new UUID to identify the running service instance.
515 :return: UUID
516 """
peusterm64b45502016-03-16 21:15:14 +0100517 # try to extract the service uuid from the request
peusterm26455852016-03-08 14:23:53 +0100518 json_data = request.get_json(force=True)
peusterm64b45502016-03-16 21:15:14 +0100519 service_uuid = json_data.get("service_uuid")
520
521 # lets be a bit fuzzy here to make testing easier
522 if service_uuid is None and len(GK.services) > 0:
523 # if we don't get a service uuid, we simple start the first service in the list
524 service_uuid = list(GK.services.iterkeys())[0]
525
peustermbea87372016-03-16 19:37:35 +0100526 if service_uuid in GK.services:
peusterm64b45502016-03-16 21:15:14 +0100527 # ok, we have a service uuid, lets start the service
peustermbea87372016-03-16 19:37:35 +0100528 service_instance_uuid = GK.services.get(service_uuid).start_service()
peusterm26455852016-03-08 14:23:53 +0100529 return {"service_instance_uuid": service_instance_uuid}
peustermbea87372016-03-16 19:37:35 +0100530 return "Service not found", 404
peusterme26487b2016-03-08 14:00:21 +0100531
532 def get(self):
peusterm26455852016-03-08 14:23:53 +0100533 """
534 Returns a list of UUIDs containing all running services.
535 :return: dict / list
536 """
peusterm075b46a2016-07-20 17:08:00 +0200537 LOG.info("GET /instantiations")
538 return {"service_instantiations_list": [
peusterm64b45502016-03-16 21:15:14 +0100539 list(s.instances.iterkeys()) for s in GK.services.itervalues()]}
peusterm786cd542016-03-14 14:12:17 +0100540
peusterme26487b2016-03-08 14:00:21 +0100541
542# create a single, global GK object
543GK = Gatekeeper()
544# setup Flask
545app = Flask(__name__)
546app.config['MAX_CONTENT_LENGTH'] = 512 * 1024 * 1024 # 512 MB max upload
547api = fr.Api(app)
548# define endpoints
peusterm593ca582016-03-30 19:55:01 +0200549api.add_resource(Packages, '/packages')
550api.add_resource(Instantiations, '/instantiations')
peusterme26487b2016-03-08 14:00:21 +0100551
552
peusterm082378b2016-03-16 20:14:22 +0100553def start_rest_api(host, port, datacenters=dict()):
peustermbea87372016-03-16 19:37:35 +0100554 GK.dcs = datacenters
peusterme26487b2016-03-08 14:00:21 +0100555 # start the Flask server (not the best performance but ok for our use case)
556 app.run(host=host,
557 port=port,
558 debug=True,
559 use_reloader=False # this is needed to run Flask in a non-main thread
560 )
561
562
563def ensure_dir(name):
564 if not os.path.exists(name):
peusterm7ec665d2016-03-14 15:20:44 +0100565 os.makedirs(name)
566
567
568def load_yaml(path):
569 with open(path, "r") as f:
570 try:
571 r = yaml.load(f)
572 except yaml.YAMLError as exc:
573 LOG.exception("YAML parse error")
574 r = dict()
575 return r
576
577
578def make_relative_path(path):
peusterm9d7d4b02016-03-23 19:56:44 +0100579 if path.startswith("file://"):
580 path = path.replace("file://", "", 1)
peusterm7ec665d2016-03-14 15:20:44 +0100581 if path.startswith("/"):
peusterm9d7d4b02016-03-23 19:56:44 +0100582 path = path.replace("/", "", 1)
peusterm7ec665d2016-03-14 15:20:44 +0100583 return path
584
585
stevenvanrossem6d5019a2016-08-12 23:00:22 +0200586def generate_lan_string(prefix, base, subnet_size=24, ip=0):
587 """
588 Helper to generate different network configuration strings.
589 """
590 r = "%s.%d.%d/%d" % (prefix, base, ip, subnet_size)
591 return r
592
593
peusterm6b5224d2016-07-20 13:20:31 +0200594def generate_subnet_strings(n, start=1, subnet_size=24, ip=0):
595 """
596 Helper to generate different network configuration strings.
597 """
598 r = list()
599 for i in range(start, start + n):
600 r.append("%d.0.0.%d/%d" % (i, ip, subnet_size))
601 return r
602
603
peusterme26487b2016-03-08 14:00:21 +0100604if __name__ == '__main__':
605 """
606 Lets allow to run the API in standalone mode.
607 """
peusterm398cd3b2016-03-21 15:04:54 +0100608 GK_STANDALONE_MODE = True
peusterme26487b2016-03-08 14:00:21 +0100609 logging.getLogger("werkzeug").setLevel(logging.INFO)
610 start_rest_api("0.0.0.0", 8000)
611