blob: 93d5cdace4d3ea8ea0404ec556b524c3b88e6617 [file] [log] [blame]
peusterme26487b2016-03-08 14:00:21 +01001"""
peusterm79ef6ae2016-07-08 13:53:57 +02002Copyright (c) 2015 SONATA-NFV and Paderborn University
3ALL RIGHTS RESERVED.
4
5Licensed under the Apache License, Version 2.0 (the "License");
6you may not use this file except in compliance with the License.
7You may obtain a copy of the License at
8
9 http://www.apache.org/licenses/LICENSE-2.0
10
11Unless required by applicable law or agreed to in writing, software
12distributed under the License is distributed on an "AS IS" BASIS,
13WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14See the License for the specific language governing permissions and
15limitations under the License.
16
17Neither the name of the SONATA-NFV [, ANY ADDITIONAL AFFILIATION]
18nor the names of its contributors may be used to endorse or promote
19products derived from this software without specific prior written
20permission.
21
22This work has been performed in the framework of the SONATA project,
23funded by the European Commission under Grant number 671517 through
24the Horizon 2020 and 5G-PPP programmes. The authors would like to
25acknowledge the contributions of their colleagues of the SONATA
26partner consortium (www.sonata-nfv.eu).
27"""
28"""
peusterme26487b2016-03-08 14:00:21 +010029This module implements a simple REST API that behaves like SONATA's gatekeeper.
30
31It is only used to support the development of SONATA's SDK tools and to demonstrate
32the year 1 version of the emulator until the integration with WP4's orchestrator is done.
33"""
34
35import logging
36import os
37import uuid
38import hashlib
peusterm786cd542016-03-14 14:12:17 +010039import zipfile
peusterm7ec665d2016-03-14 15:20:44 +010040import yaml
peusterme66edf72016-08-23 11:11:12 +020041import threading
stevenvanrosseme8d86282017-01-28 00:52:22 +010042from docker import DockerClient, APIClient
peusterme26487b2016-03-08 14:00:21 +010043from flask import Flask, request
44import flask_restful as fr
wtaverni5b23b662016-06-20 12:26:21 +020045from collections import defaultdict
stevenvanrossemdb2f9432016-08-20 00:01:11 +020046import pkg_resources
stevenvanrosseme8d86282017-01-28 00:52:22 +010047from subprocess import Popen
peusterme26487b2016-03-08 14:00:21 +010048
peusterm398cd3b2016-03-21 15:04:54 +010049logging.basicConfig()
peusterm786cd542016-03-14 14:12:17 +010050LOG = logging.getLogger("sonata-dummy-gatekeeper")
51LOG.setLevel(logging.DEBUG)
peusterme26487b2016-03-08 14:00:21 +010052logging.getLogger("werkzeug").setLevel(logging.WARNING)
53
peusterm92237dc2016-03-21 15:45:58 +010054GK_STORAGE = "/tmp/son-dummy-gk/"
55UPLOAD_FOLDER = os.path.join(GK_STORAGE, "uploads/")
56CATALOG_FOLDER = os.path.join(GK_STORAGE, "catalog/")
peusterme26487b2016-03-08 14:00:21 +010057
peusterm82d406e2016-05-02 20:52:06 +020058# Enable Dockerfile build functionality
59BUILD_DOCKERFILE = False
60
peusterm398cd3b2016-03-21 15:04:54 +010061# flag to indicate that we run without the emulator (only the bare API for integration testing)
62GK_STANDALONE_MODE = False
63
peusterm56356cb2016-05-03 10:43:43 +020064# should a new version of an image be pulled even if its available
wtaverni5b23b662016-06-20 12:26:21 +020065FORCE_PULL = False
peusterme26487b2016-03-08 14:00:21 +010066
stevenvanrossemdb2f9432016-08-20 00:01:11 +020067# Automatically deploy SAPs (endpoints) of the service as new containers
peustermb1cf5372016-08-23 14:02:09 +020068# Attention: This is not a configuration switch but a global variable! Don't change its default value.
stevenvanrossemdb2f9432016-08-20 00:01:11 +020069DEPLOY_SAP = False
70
peusterm76eb8652016-09-06 11:07:16 +020071# flag to indicate if we use bidirectional forwarding rules in the automatic chaining process
72BIDIRECTIONAL_CHAIN = False
73
peusterme26487b2016-03-08 14:00:21 +010074class Gatekeeper(object):
75
76 def __init__(self):
peusterm786cd542016-03-14 14:12:17 +010077 self.services = dict()
peusterm082378b2016-03-16 20:14:22 +010078 self.dcs = dict()
stevenvanrossembecc7c52016-11-07 05:52:01 +010079 self.net = None
peusterm3444ae42016-03-16 20:46:41 +010080 self.vnf_counter = 0 # used to generate short names for VNFs (Mininet limitation)
peusterm786cd542016-03-14 14:12:17 +010081 LOG.info("Create SONATA dummy gatekeeper.")
peusterme26487b2016-03-08 14:00:21 +010082
peusterm786cd542016-03-14 14:12:17 +010083 def register_service_package(self, service_uuid, service):
84 """
85 register new service package
86 :param service_uuid
87 :param service object
88 """
89 self.services[service_uuid] = service
90 # lets perform all steps needed to onboard the service
91 service.onboard()
92
peusterm3444ae42016-03-16 20:46:41 +010093 def get_next_vnf_name(self):
94 self.vnf_counter += 1
peusterm398cd3b2016-03-21 15:04:54 +010095 return "vnf%d" % self.vnf_counter
peusterm3444ae42016-03-16 20:46:41 +010096
peusterm786cd542016-03-14 14:12:17 +010097
98class Service(object):
99 """
100 This class represents a NS uploaded as a *.son package to the
101 dummy gatekeeper.
102 Can have multiple running instances of this service.
103 """
104
105 def __init__(self,
106 service_uuid,
107 package_file_hash,
108 package_file_path):
109 self.uuid = service_uuid
110 self.package_file_hash = package_file_hash
111 self.package_file_path = package_file_path
112 self.package_content_path = os.path.join(CATALOG_FOLDER, "services/%s" % self.uuid)
peusterm7ec665d2016-03-14 15:20:44 +0100113 self.manifest = None
114 self.nsd = None
115 self.vnfds = dict()
peustermbdfab7e2016-03-14 16:03:30 +0100116 self.local_docker_files = dict()
peusterm82d406e2016-05-02 20:52:06 +0200117 self.remote_docker_image_urls = dict()
peusterm786cd542016-03-14 14:12:17 +0100118 self.instances = dict()
peusterm6b5224d2016-07-20 13:20:31 +0200119 self.vnf_name2docker_name = dict()
stevenvanrossemdb2f9432016-08-20 00:01:11 +0200120 self.sap_identifiers = set()
peusterm6b5224d2016-07-20 13:20:31 +0200121 # lets generate a set of subnet configurations used for e-line chaining setup
122 self.eline_subnets_src = generate_subnet_strings(50, start=200, subnet_size=24, ip=1)
123 self.eline_subnets_dst = generate_subnet_strings(50, start=200, subnet_size=24, ip=2)
peusterme26487b2016-03-08 14:00:21 +0100124
peusterm786cd542016-03-14 14:12:17 +0100125 def onboard(self):
126 """
127 Do all steps to prepare this service to be instantiated
128 :return:
129 """
130 # 1. extract the contents of the package and store them in our catalog
131 self._unpack_service_package()
132 # 2. read in all descriptor files
peusterm7ec665d2016-03-14 15:20:44 +0100133 self._load_package_descriptor()
134 self._load_nsd()
135 self._load_vnfd()
stevenvanrossemdb2f9432016-08-20 00:01:11 +0200136 if DEPLOY_SAP:
137 self._load_saps()
peusterm786cd542016-03-14 14:12:17 +0100138 # 3. prepare container images (e.g. download or build Dockerfile)
peusterm82d406e2016-05-02 20:52:06 +0200139 if BUILD_DOCKERFILE:
140 self._load_docker_files()
141 self._build_images_from_dockerfiles()
142 else:
143 self._load_docker_urls()
144 self._pull_predefined_dockerimages()
peusterm3bb86bf2016-08-15 09:47:57 +0200145 LOG.info("On-boarded service: %r" % self.manifest.get("name"))
peusterm7ec665d2016-03-14 15:20:44 +0100146
peusterm082378b2016-03-16 20:14:22 +0100147 def start_service(self):
peusterm3444ae42016-03-16 20:46:41 +0100148 """
149 This methods creates and starts a new service instance.
150 It computes placements, iterates over all VNFDs, and starts
151 each VNFD as a Docker container in the data center selected
152 by the placement algorithm.
153 :return:
154 """
155 LOG.info("Starting service %r" % self.uuid)
stevenvanrossemd87fe472016-05-11 11:34:34 +0200156
peusterm3444ae42016-03-16 20:46:41 +0100157 # 1. each service instance gets a new uuid to identify it
peusterm082378b2016-03-16 20:14:22 +0100158 instance_uuid = str(uuid.uuid4())
peusterm3444ae42016-03-16 20:46:41 +0100159 # build a instances dict (a bit like a NSR :))
160 self.instances[instance_uuid] = dict()
161 self.instances[instance_uuid]["vnf_instances"] = list()
stevenvanrossemd87fe472016-05-11 11:34:34 +0200162
stevenvanrossemdb2f9432016-08-20 00:01:11 +0200163 # 2. Configure the chaining of the network functions (currently only E-Line and E-LAN links supported)
164 vnf_id2vnf_name = defaultdict(lambda: "NotExistingNode",
165 reduce(lambda x, y: dict(x, **y),
166 map(lambda d: {d["vnf_id"]: d["vnf_name"]},
167 self.nsd["network_functions"])))
168
169 # 3. compute placement of this service instance (adds DC names to VNFDs)
peusterm398cd3b2016-03-21 15:04:54 +0100170 if not GK_STANDALONE_MODE:
peustermf6459542016-08-31 19:00:17 +0200171 #self._calculate_placement(FirstDcPlacement)
172 self._calculate_placement(RoundRobinDcPlacement)
peusterm3444ae42016-03-16 20:46:41 +0100173 # iterate over all vnfds that we have to start
peusterm082378b2016-03-16 20:14:22 +0100174 for vnfd in self.vnfds.itervalues():
peusterm398cd3b2016-03-21 15:04:54 +0100175 vnfi = None
176 if not GK_STANDALONE_MODE:
177 vnfi = self._start_vnfd(vnfd)
178 self.instances[instance_uuid]["vnf_instances"].append(vnfi)
stevenvanrossemd87fe472016-05-11 11:34:34 +0200179
edmaasf5d0cbe2016-12-11 15:12:26 +0100180 if "virtual_links" in self.nsd:
181 vlinks = self.nsd["virtual_links"]
182 fwd_links = self.nsd["forwarding_graphs"][0]["constituent_virtual_links"]
183 eline_fwd_links = [l for l in vlinks if (l["id"] in fwd_links) and (l["connectivity_type"] == "E-Line")]
184 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 +0200185
stevenvanrossem9cc73602017-01-27 23:37:29 +0100186 GK.net.deployed_elines.extend(eline_fwd_links)
187 GK.net.deployed_elans.extend(elan_fwd_links)
stevenvanrossembecc7c52016-11-07 05:52:01 +0100188
edmaasf5d0cbe2016-12-11 15:12:26 +0100189 # 4a. deploy E-Line links
190 # cookie is used as identifier for the flowrules installed by the dummygatekeeper
191 # eg. different services get a unique cookie for their flowrules
192 cookie = 1
193 for link in eline_fwd_links:
194 src_id, src_if_name = link["connection_points_reference"][0].split(":")
195 dst_id, dst_if_name = link["connection_points_reference"][1].split(":")
stevenvanrossemd87fe472016-05-11 11:34:34 +0200196
edmaasf5d0cbe2016-12-11 15:12:26 +0100197 # check if there is a SAP in the link
198 if src_id in self.sap_identifiers:
199 src_docker_name = "{0}_{1}".format(src_id, src_if_name)
200 src_id = src_docker_name
stevenvanrossemdc3bfd02016-11-04 15:33:28 +0100201 else:
edmaasf5d0cbe2016-12-11 15:12:26 +0100202 src_docker_name = src_id
stevenvanrossemdb2f9432016-08-20 00:01:11 +0200203
edmaasf5d0cbe2016-12-11 15:12:26 +0100204 if dst_id in self.sap_identifiers:
205 dst_docker_name = "{0}_{1}".format(dst_id, dst_if_name)
206 dst_id = dst_docker_name
207 else:
208 dst_docker_name = dst_id
stevenvanrossemdb2f9432016-08-20 00:01:11 +0200209
edmaasf5d0cbe2016-12-11 15:12:26 +0100210 src_name = vnf_id2vnf_name[src_id]
211 dst_name = vnf_id2vnf_name[dst_id]
peusterm9fb74ec2016-06-16 11:30:55 +0200212
stevenvanrossem6d5019a2016-08-12 23:00:22 +0200213 LOG.debug(
edmaasf5d0cbe2016-12-11 15:12:26 +0100214 "Setting up E-Line link. %s(%s:%s) -> %s(%s:%s)" % (
215 src_name, src_id, src_if_name, dst_name, dst_id, dst_if_name))
stevenvanrossem6d5019a2016-08-12 23:00:22 +0200216
edmaasf5d0cbe2016-12-11 15:12:26 +0100217 if (src_name in self.vnfds) and (dst_name in self.vnfds):
218 network = self.vnfds[src_name].get("dc").net # there should be a cleaner way to find the DCNetwork
219 LOG.debug(src_docker_name)
220 ret = network.setChain(
221 src_docker_name, dst_docker_name,
222 vnf_src_interface=src_if_name, vnf_dst_interface=dst_if_name,
223 bidirectional=BIDIRECTIONAL_CHAIN, cmd="add-flow", cookie=cookie, priority=10)
stevenvanrossemdc3bfd02016-11-04 15:33:28 +0100224
edmaasf5d0cbe2016-12-11 15:12:26 +0100225 # re-configure the VNFs IP assignment and ensure that a new subnet is used for each E-Link
226 src_vnfi = self._get_vnf_instance(instance_uuid, src_name)
227 if src_vnfi is not None:
228 self._vnf_reconfigure_network(src_vnfi, src_if_name, self.eline_subnets_src.pop(0))
229 dst_vnfi = self._get_vnf_instance(instance_uuid, dst_name)
230 if dst_vnfi is not None:
231 self._vnf_reconfigure_network(dst_vnfi, dst_if_name, self.eline_subnets_dst.pop(0))
232
233 # 4b. deploy E-LAN links
234 base = 10
235 for link in elan_fwd_links:
stevenvanrossem9cc73602017-01-27 23:37:29 +0100236
237 elan_vnf_list=[]
238
edmaasf5d0cbe2016-12-11 15:12:26 +0100239 # generate lan ip address
240 ip = 1
241 for intf in link["connection_points_reference"]:
242 ip_address = generate_lan_string("10.0", base, subnet_size=24, ip=ip)
243 vnf_id, intf_name = intf.split(":")
244 if vnf_id in self.sap_identifiers:
245 src_docker_name = "{0}_{1}".format(vnf_id, intf_name)
246 vnf_id = src_docker_name
stevenvanrossem9cc73602017-01-27 23:37:29 +0100247 else:
248 src_docker_name = vnf_id
edmaasf5d0cbe2016-12-11 15:12:26 +0100249 vnf_name = vnf_id2vnf_name[vnf_id]
250 LOG.debug(
251 "Setting up E-LAN link. %s(%s:%s) -> %s" % (
252 vnf_name, vnf_id, intf_name, ip_address))
253
254 if vnf_name in self.vnfds:
255 # re-configure the VNFs IP assignment and ensure that a new subnet is used for each E-LAN
256 # E-LAN relies on the learning switch capability of Ryu which has to be turned on in the topology
257 # (DCNetwork(controller=RemoteController, enable_learning=True)), so no explicit chaining is necessary.
258 vnfi = self._get_vnf_instance(instance_uuid, vnf_name)
259 if vnfi is not None:
260 self._vnf_reconfigure_network(vnfi, intf_name, ip_address)
261 # increase for the next ip address on this E-LAN
262 ip += 1
stevenvanrossem9cc73602017-01-27 23:37:29 +0100263
264 # add this vnf and interface to the E-LAN for tagging
265 network = self.vnfds[vnf_name].get("dc").net # there should be a cleaner way to find the DCNetwork
266 elan_vnf_list.append({'name':src_docker_name,'interface':intf_name})
stevenvanrossemdc3bfd02016-11-04 15:33:28 +0100267
268
stevenvanrossem9cc73602017-01-27 23:37:29 +0100269 # install the VLAN tags for this E-LAN
270 network.setLAN(elan_vnf_list)
edmaasf5d0cbe2016-12-11 15:12:26 +0100271 # increase the base ip address for the next E-LAN
272 base += 1
stevenvanrossem6d5019a2016-08-12 23:00:22 +0200273
stevenvanrossemdb2f9432016-08-20 00:01:11 +0200274 # 5. run the emulator specific entrypoint scripts in the VNFIs of this service instance
peusterm8484b902016-06-21 09:03:35 +0200275 self._trigger_emulator_start_scripts_in_vnfis(self.instances[instance_uuid]["vnf_instances"])
276
peusterm3444ae42016-03-16 20:46:41 +0100277 LOG.info("Service started. Instance id: %r" % instance_uuid)
peusterm082378b2016-03-16 20:14:22 +0100278 return instance_uuid
279
edmaas9c4fd112016-10-05 19:45:57 +0200280 def stop_service(self, instance_uuid):
edmaasd454d542016-09-29 13:19:22 +0200281 """
282 This method stops a running service instance.
edmaas74d72492016-10-05 19:59:22 +0200283 It iterates over all VNF instances, stopping them each
edmaasd454d542016-09-29 13:19:22 +0200284 and removing them from their data center.
285
edmaas74d72492016-10-05 19:59:22 +0200286 :param instance_uuid: the uuid of the service instance to be stopped
edmaasd454d542016-09-29 13:19:22 +0200287 """
edmaas9c4fd112016-10-05 19:45:57 +0200288 LOG.info("Stopping service %r" % self.uuid)
289 # get relevant information
290 # instance_uuid = str(self.uuid.uuid4())
291 vnf_instances = self.instances[instance_uuid]["vnf_instances"]
292
293 for v in vnf_instances:
edmaas74d72492016-10-05 19:59:22 +0200294 self._stop_vnfi(v)
edmaas9c4fd112016-10-05 19:45:57 +0200295
296 if not GK_STANDALONE_MODE:
297 # remove placement?
298 # self._remove_placement(RoundRobinPlacement)
299 None
300
301 # last step: remove the instance from the list of all instances
302 del self.instances[instance_uuid]
edmaasd454d542016-09-29 13:19:22 +0200303
peusterm398cd3b2016-03-21 15:04:54 +0100304 def _start_vnfd(self, vnfd):
305 """
306 Start a single VNFD of this service
307 :param vnfd: vnfd descriptor dict
308 :return:
309 """
310 # iterate over all deployment units within each VNFDs
311 for u in vnfd.get("virtual_deployment_units"):
312 # 1. get the name of the docker image to start and the assigned DC
peusterm56356cb2016-05-03 10:43:43 +0200313 vnf_name = vnfd.get("name")
314 if vnf_name not in self.remote_docker_image_urls:
315 raise Exception("No image name for %r found. Abort." % vnf_name)
316 docker_name = self.remote_docker_image_urls.get(vnf_name)
peusterm398cd3b2016-03-21 15:04:54 +0100317 target_dc = vnfd.get("dc")
318 # 2. perform some checks to ensure we can start the container
319 assert(docker_name is not None)
320 assert(target_dc is not None)
321 if not self._check_docker_image_exists(docker_name):
322 raise Exception("Docker image %r not found. Abort." % docker_name)
edmaas7e084ea2016-11-28 13:50:23 +0100323
324 # 3. get the resource limits
325 res_req = u.get("resource_requirements")
326 cpu_list = res_req.get("cpu").get("cores")
327 if not cpu_list or len(cpu_list)==0:
328 cpu_list="1"
329 cpu_bw = res_req.get("cpu").get("cpu_bw")
330 if not cpu_bw:
331 cpu_bw=1
332 mem_num = str(res_req.get("memory").get("size"))
333 if len(mem_num)==0:
334 mem_num="2"
335 mem_unit = str(res_req.get("memory").get("size_unit"))
336 if str(mem_unit)==0:
337 mem_unit="GB"
338 mem_limit = float(mem_num)
339 if mem_unit=="GB":
340 mem_limit=mem_limit*1024*1024*1024
341 elif mem_unit=="MB":
342 mem_limit=mem_limit*1024*1024
343 elif mem_unit=="KB":
344 mem_limit=mem_limit*1024
345 mem_lim = int(mem_limit)
346 cpu_period, cpu_quota = self._calculate_cpu_cfs_values(float(cpu_bw))
347
edmaas8d4290a2017-03-27 13:56:59 +0200348 # 4. generate the volume paths for the docker container
349 volumes=list()
350 # a volume to extract log files
edmaas8d4290a2017-03-27 13:56:59 +0200351 docker_log_path = "/tmp/results/%s/%s"%(self.uuid,vnf_name)
352 LOG.debug("LOG path for vnf %s is %s."%(vnf_name,docker_log_path))
edmaas8d4290a2017-03-27 13:56:59 +0200353 if not os.path.exists(docker_log_path):
edmaasd1626e52017-04-02 16:21:57 +0200354 LOG.debug("Creating folder %s"%docker_log_path)
edmaas8d4290a2017-03-27 13:56:59 +0200355 os.makedirs(docker_log_path)
edmaas8d4290a2017-03-27 13:56:59 +0200356
357 volumes.append(docker_log_path+":/mnt/share/")
358
359
360 # 5. do the dc.startCompute(name="foobar") call to run the container
peusterm398cd3b2016-03-21 15:04:54 +0100361 # TODO consider flavors, and other annotations
stevenvanrossemd87fe472016-05-11 11:34:34 +0200362 intfs = vnfd.get("connection_points")
stevenvanrossemeae73082016-08-05 16:22:12 +0200363
stevenvanrossemdb2f9432016-08-20 00:01:11 +0200364 # TODO: get all vnf id's from the nsd for this vnfd and use those as dockername
stevenvanrossem11a021f2016-08-05 13:43:00 +0200365 # use the vnf_id in the nsd as docker name
366 # so deployed containers can be easily mapped back to the nsd
367 vnf_name2id = defaultdict(lambda: "NotExistingNode",
368 reduce(lambda x, y: dict(x, **y),
369 map(lambda d: {d["vnf_name"]: d["vnf_id"]},
370 self.nsd["network_functions"])))
371 self.vnf_name2docker_name[vnf_name] = vnf_name2id[vnf_name]
372 # self.vnf_name2docker_name[vnf_name] = GK.get_next_vnf_name()
373
peusterm6b5224d2016-07-20 13:20:31 +0200374 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 +0200375 LOG.debug("Interfaces for %r: %r" % (vnf_name, intfs))
edmaas8d4290a2017-03-27 13:56:59 +0200376 vnfi = target_dc.startCompute(
377 self.vnf_name2docker_name[vnf_name],
378 network=intfs,
379 image=docker_name,
380 flavor_name="small",
381 cpu_quota=cpu_quota,
382 cpu_period=cpu_period,
383 cpuset=cpu_list,
384 mem_limit=mem_lim,
385 volumes=volumes)
peusterm398cd3b2016-03-21 15:04:54 +0100386 return vnfi
387
edmaas74d72492016-10-05 19:59:22 +0200388 def _stop_vnfi(self, vnfi):
edmaasd454d542016-09-29 13:19:22 +0200389 """
edmaas74d72492016-10-05 19:59:22 +0200390 Stop a VNF instance.
edmaasd454d542016-09-29 13:19:22 +0200391
edmaas74d72492016-10-05 19:59:22 +0200392 :param vnfi: vnf instance to be stopped
edmaasd454d542016-09-29 13:19:22 +0200393 """
edmaas9c4fd112016-10-05 19:45:57 +0200394 # Find the correct datacenter
395 status = vnfi.getStatus()
396 dc = vnfi.datacenter
edmaasd1626e52017-04-02 16:21:57 +0200397
edmaas9c4fd112016-10-05 19:45:57 +0200398 # stop the vnfi
edmaas74d72492016-10-05 19:59:22 +0200399 LOG.info("Stopping the vnf instance contained in %r in DC %r" % (status["name"], dc))
edmaas9c4fd112016-10-05 19:45:57 +0200400 dc.stopCompute(status["name"])
edmaasd454d542016-09-29 13:19:22 +0200401
peusterm6b5224d2016-07-20 13:20:31 +0200402 def _get_vnf_instance(self, instance_uuid, name):
403 """
404 Returns the Docker object for the given VNF name (or Docker name).
405 :param instance_uuid: UUID of the service instance to search in.
406 :param name: VNF name or Docker name. We are fuzzy here.
407 :return:
408 """
409 dn = name
410 if name in self.vnf_name2docker_name:
411 dn = self.vnf_name2docker_name[name]
412 for vnfi in self.instances[instance_uuid]["vnf_instances"]:
413 if vnfi.name == dn:
414 return vnfi
415 LOG.warning("No container with name: %r found.")
416 return None
417
418 @staticmethod
419 def _vnf_reconfigure_network(vnfi, if_name, net_str):
420 """
421 Reconfigure the network configuration of a specific interface
422 of a running container.
423 :param vnfi: container instacne
424 :param if_name: interface name
425 :param net_str: network configuration string, e.g., 1.2.3.4/24
426 :return:
427 """
428 intf = vnfi.intf(intf=if_name)
429 if intf is not None:
430 intf.setIP(net_str)
431 LOG.debug("Reconfigured network of %s:%s to %r" % (vnfi.name, if_name, net_str))
432 else:
433 LOG.warning("Interface not found: %s:%s. Network reconfiguration skipped." % (vnfi.name, if_name))
434
435
peusterm8484b902016-06-21 09:03:35 +0200436 def _trigger_emulator_start_scripts_in_vnfis(self, vnfi_list):
437 for vnfi in vnfi_list:
438 config = vnfi.dcinfo.get("Config", dict())
439 env = config.get("Env", list())
440 for env_var in env:
edmaas7e084ea2016-11-28 13:50:23 +0100441 var, cmd = map(str.strip, map(str, env_var.split('=', 1)))
442 LOG.debug("%r = %r" % (var , cmd))
443 if var=="SON_EMU_CMD":
peusterme66edf72016-08-23 11:11:12 +0200444 LOG.info("Executing entry point script in %r: %r" % (vnfi.name, cmd))
445 # execute command in new thread to ensure that GK is not blocked by VNF
446 t = threading.Thread(target=vnfi.cmdPrint, args=(cmd,))
447 t.daemon = True
448 t.start()
peusterm8484b902016-06-21 09:03:35 +0200449
peusterm786cd542016-03-14 14:12:17 +0100450 def _unpack_service_package(self):
451 """
452 unzip *.son file and store contents in CATALOG_FOLDER/services/<service_uuid>/
453 """
peusterm82d406e2016-05-02 20:52:06 +0200454 LOG.info("Unzipping: %r" % self.package_file_path)
peusterm786cd542016-03-14 14:12:17 +0100455 with zipfile.ZipFile(self.package_file_path, "r") as z:
456 z.extractall(self.package_content_path)
457
peusterm82d406e2016-05-02 20:52:06 +0200458
peusterm7ec665d2016-03-14 15:20:44 +0100459 def _load_package_descriptor(self):
460 """
461 Load the main package descriptor YAML and keep it as dict.
462 :return:
463 """
464 self.manifest = load_yaml(
465 os.path.join(
466 self.package_content_path, "META-INF/MANIFEST.MF"))
467
468 def _load_nsd(self):
469 """
470 Load the entry NSD YAML and keep it as dict.
471 :return:
472 """
473 if "entry_service_template" in self.manifest:
474 nsd_path = os.path.join(
475 self.package_content_path,
476 make_relative_path(self.manifest.get("entry_service_template")))
477 self.nsd = load_yaml(nsd_path)
stevenvanrossembecc7c52016-11-07 05:52:01 +0100478 GK.net.deployed_nsds.append(self.nsd)
peusterm757fe9a2016-04-04 14:11:58 +0200479 LOG.debug("Loaded NSD: %r" % self.nsd.get("name"))
peusterm7ec665d2016-03-14 15:20:44 +0100480
481 def _load_vnfd(self):
482 """
483 Load all VNFD YAML files referenced in MANIFEST.MF and keep them in dict.
484 :return:
485 """
486 if "package_content" in self.manifest:
487 for pc in self.manifest.get("package_content"):
488 if pc.get("content-type") == "application/sonata.function_descriptor":
489 vnfd_path = os.path.join(
490 self.package_content_path,
491 make_relative_path(pc.get("name")))
492 vnfd = load_yaml(vnfd_path)
peusterm757fe9a2016-04-04 14:11:58 +0200493 self.vnfds[vnfd.get("name")] = vnfd
494 LOG.debug("Loaded VNFD: %r" % vnfd.get("name"))
peusterm7ec665d2016-03-14 15:20:44 +0100495
stevenvanrossemdb2f9432016-08-20 00:01:11 +0200496 def _load_saps(self):
497 # Each Service Access Point (connection_point) in the nsd is getting its own container
498 SAPs = [p["id"] for p in self.nsd["connection_points"] if p["type"] == "interface"]
499 for sap in SAPs:
500 # endpoints needed in this service
501 sap_vnf_id, sap_vnf_interface = sap.split(':')
502 # set of the connection_point ids found in the nsd (in the examples this is 'ns')
503 self.sap_identifiers.add(sap_vnf_id)
504
peusterm76eb8652016-09-06 11:07:16 +0200505 sap_docker_name = "%s_%s" % (sap_vnf_id, sap_vnf_interface)
stevenvanrossemdb2f9432016-08-20 00:01:11 +0200506
507 # add SAP to self.vnfds
508 sapfile = pkg_resources.resource_filename(__name__, "sap_vnfd.yml")
509 sap_vnfd = load_yaml(sapfile)
510 sap_vnfd["connection_points"][0]["id"] = sap_vnf_interface
511 sap_vnfd["name"] = sap_docker_name
512 self.vnfds[sap_docker_name] = sap_vnfd
513 # add SAP vnf to list in the NSD so it is deployed later on
514 # each SAP get a unique VNFD and vnf_id in the NSD
515 self.nsd["network_functions"].append({"vnf_id": sap_docker_name, "vnf_name": sap_docker_name})
516 LOG.debug("Loaded SAP: %r" % sap_vnfd.get("name"))
517
peusterm7ec665d2016-03-14 15:20:44 +0100518 def _load_docker_files(self):
519 """
peusterm9d7d4b02016-03-23 19:56:44 +0100520 Get all paths to Dockerfiles from VNFDs and store them in dict.
peusterm7ec665d2016-03-14 15:20:44 +0100521 :return:
522 """
peusterm9d7d4b02016-03-23 19:56:44 +0100523 for k, v in self.vnfds.iteritems():
524 for vu in v.get("virtual_deployment_units"):
525 if vu.get("vm_image_format") == "docker":
526 vm_image = vu.get("vm_image")
peusterm7ec665d2016-03-14 15:20:44 +0100527 docker_path = os.path.join(
528 self.package_content_path,
peusterm9d7d4b02016-03-23 19:56:44 +0100529 make_relative_path(vm_image))
530 self.local_docker_files[k] = docker_path
peusterm56356cb2016-05-03 10:43:43 +0200531 LOG.debug("Found Dockerfile (%r): %r" % (k, docker_path))
peusterm7ec665d2016-03-14 15:20:44 +0100532
peusterm82d406e2016-05-02 20:52:06 +0200533 def _load_docker_urls(self):
534 """
535 Get all URLs to pre-build docker images in some repo.
536 :return:
537 """
538 for k, v in self.vnfds.iteritems():
539 for vu in v.get("virtual_deployment_units"):
540 if vu.get("vm_image_format") == "docker":
peusterm35ba4052016-05-02 21:21:14 +0200541 url = vu.get("vm_image")
542 if url is not None:
543 url = url.replace("http://", "")
544 self.remote_docker_image_urls[k] = url
peusterm56356cb2016-05-03 10:43:43 +0200545 LOG.debug("Found Docker image URL (%r): %r" % (k, self.remote_docker_image_urls[k]))
peusterm82d406e2016-05-02 20:52:06 +0200546
peustermbdfab7e2016-03-14 16:03:30 +0100547 def _build_images_from_dockerfiles(self):
548 """
549 Build Docker images for each local Dockerfile found in the package: self.local_docker_files
550 """
peusterm398cd3b2016-03-21 15:04:54 +0100551 if GK_STANDALONE_MODE:
552 return # do not build anything in standalone mode
peustermbdfab7e2016-03-14 16:03:30 +0100553 dc = DockerClient()
554 LOG.info("Building %d Docker images (this may take several minutes) ..." % len(self.local_docker_files))
555 for k, v in self.local_docker_files.iteritems():
556 for line in dc.build(path=v.replace("Dockerfile", ""), tag=k, rm=False, nocache=False):
557 LOG.debug("DOCKER BUILD: %s" % line)
558 LOG.info("Docker image created: %s" % k)
559
peusterm82d406e2016-05-02 20:52:06 +0200560 def _pull_predefined_dockerimages(self):
peustermbdfab7e2016-03-14 16:03:30 +0100561 """
562 If the package contains URLs to pre-build Docker images, we download them with this method.
563 """
peusterm35ba4052016-05-02 21:21:14 +0200564 dc = DockerClient()
565 for url in self.remote_docker_image_urls.itervalues():
peusterm56356cb2016-05-03 10:43:43 +0200566 if not FORCE_PULL: # only pull if not present (speedup for development)
stevenvanrossem8a9df3f2017-01-27 22:35:04 +0100567 if len(dc.images.list(name=url)) > 0:
peusterm56356cb2016-05-03 10:43:43 +0200568 LOG.debug("Image %r present. Skipping pull." % url)
569 continue
peusterm35ba4052016-05-02 21:21:14 +0200570 LOG.info("Pulling image: %r" % url)
stevenvanrosseme8d86282017-01-28 00:52:22 +0100571 # this seems to fail with latest docker api version 2.0.2
572 # dc.images.pull(url,
573 # insecure_registry=True)
574 #using docker cli instead
575 cmd = ["docker",
576 "pull",
577 url,
578 ]
579 Popen(cmd).wait()
580
581
582
peusterm786cd542016-03-14 14:12:17 +0100583
peusterm3444ae42016-03-16 20:46:41 +0100584 def _check_docker_image_exists(self, image_name):
peusterm3f307142016-03-16 21:02:53 +0100585 """
586 Query the docker service and check if the given image exists
587 :param image_name: name of the docker image
588 :return:
589 """
stevenvanrossem8a9df3f2017-01-27 22:35:04 +0100590 return len(DockerClient().images.list(name=image_name)) > 0
peusterm3444ae42016-03-16 20:46:41 +0100591
peusterm082378b2016-03-16 20:14:22 +0100592 def _calculate_placement(self, algorithm):
593 """
594 Do placement by adding the a field "dc" to
595 each VNFD that points to one of our
596 data center objects known to the gatekeeper.
597 """
598 assert(len(self.vnfds) > 0)
599 assert(len(GK.dcs) > 0)
600 # instantiate algorithm an place
601 p = algorithm()
602 p.place(self.nsd, self.vnfds, GK.dcs)
603 LOG.info("Using placement algorithm: %r" % p.__class__.__name__)
604 # lets print the placement result
605 for name, vnfd in self.vnfds.iteritems():
606 LOG.info("Placed VNF %r on DC %r" % (name, str(vnfd.get("dc"))))
607
edmaas7e084ea2016-11-28 13:50:23 +0100608 def _calculate_cpu_cfs_values(self, cpu_time_percentage):
609 """
610 Calculate cpu period and quota for CFS
611 :param cpu_time_percentage: percentage of overall CPU to be used
612 :return: cpu_period, cpu_quota
613 """
614 if cpu_time_percentage is None:
615 return -1, -1
616 if cpu_time_percentage < 0:
617 return -1, -1
618 # (see: https://www.kernel.org/doc/Documentation/scheduler/sched-bwc.txt)
619 # Attention minimum cpu_quota is 1ms (micro)
620 cpu_period = 1000000 # lets consider a fixed period of 1000000 microseconds for now
621 LOG.debug("cpu_period is %r, cpu_percentage is %r" % (cpu_period, cpu_time_percentage))
622 cpu_quota = cpu_period * cpu_time_percentage # calculate the fraction of cpu time for this container
623 # ATTENTION >= 1000 to avoid a invalid argument system error ... no idea why
624 if cpu_quota < 1000:
625 LOG.debug("cpu_quota before correcting: %r" % cpu_quota)
626 cpu_quota = 1000
627 LOG.warning("Increased CPU quota to avoid system error.")
628 LOG.debug("Calculated: cpu_period=%f / cpu_quota=%f" % (cpu_period, cpu_quota))
629 return int(cpu_period), int(cpu_quota)
630
peusterm082378b2016-03-16 20:14:22 +0100631
632"""
633Some (simple) placement algorithms
634"""
635
636
637class FirstDcPlacement(object):
638 """
639 Placement: Always use one and the same data center from the GK.dcs dict.
640 """
641 def place(self, nsd, vnfds, dcs):
642 for name, vnfd in vnfds.iteritems():
643 vnfd["dc"] = list(dcs.itervalues())[0]
644
peusterme26487b2016-03-08 14:00:21 +0100645
peustermf6459542016-08-31 19:00:17 +0200646class RoundRobinDcPlacement(object):
647 """
648 Placement: Distribute VNFs across all available DCs in a round robin fashion.
649 """
peustermf6459542016-08-31 19:00:17 +0200650 def place(self, nsd, vnfds, dcs):
651 c = 0
edmaasd454d542016-09-29 13:19:22 +0200652 dcs_list = list(dcs.itervalues())
peustermf6459542016-08-31 19:00:17 +0200653 for name, vnfd in vnfds.iteritems():
654 vnfd["dc"] = dcs_list[c % len(dcs_list)]
655 c += 1 # inc. c to use next DC
656
657
658
659
peusterme26487b2016-03-08 14:00:21 +0100660"""
661Resource definitions and API endpoints
662"""
663
664
665class Packages(fr.Resource):
666
667 def post(self):
668 """
peusterm26455852016-03-08 14:23:53 +0100669 Upload a *.son service package to the dummy gatekeeper.
670
peusterme26487b2016-03-08 14:00:21 +0100671 We expect request with a *.son file and store it in UPLOAD_FOLDER
peusterm26455852016-03-08 14:23:53 +0100672 :return: UUID
peusterme26487b2016-03-08 14:00:21 +0100673 """
674 try:
675 # get file contents
peustermec5cefe2017-02-09 11:15:14 +0100676 LOG.info("POST /packages called")
peusterm593ca582016-03-30 19:55:01 +0200677 # lets search for the package in the request
peustermec5cefe2017-02-09 11:15:14 +0100678 is_file_object = False # make API more robust: file can be in data or in files field
peusterm593ca582016-03-30 19:55:01 +0200679 if "package" in request.files:
680 son_file = request.files["package"]
peustermec5cefe2017-02-09 11:15:14 +0100681 is_file_object = True
682 elif len(request.data) > 0:
683 son_file = request.data
peusterm593ca582016-03-30 19:55:01 +0200684 else:
685 return {"service_uuid": None, "size": 0, "sha1": None, "error": "upload failed. file not found."}, 500
peusterme26487b2016-03-08 14:00:21 +0100686 # generate a uuid to reference this package
687 service_uuid = str(uuid.uuid4())
peusterm786cd542016-03-14 14:12:17 +0100688 file_hash = hashlib.sha1(str(son_file)).hexdigest()
peusterme26487b2016-03-08 14:00:21 +0100689 # ensure that upload folder exists
690 ensure_dir(UPLOAD_FOLDER)
691 upload_path = os.path.join(UPLOAD_FOLDER, "%s.son" % service_uuid)
692 # store *.son file to disk
peustermec5cefe2017-02-09 11:15:14 +0100693 if is_file_object:
694 son_file.save(upload_path)
695 else:
696 with open(upload_path, 'wb') as f:
697 f.write(son_file)
peusterme26487b2016-03-08 14:00:21 +0100698 size = os.path.getsize(upload_path)
peusterm786cd542016-03-14 14:12:17 +0100699 # create a service object and register it
700 s = Service(service_uuid, file_hash, upload_path)
701 GK.register_service_package(service_uuid, s)
peusterme26487b2016-03-08 14:00:21 +0100702 # generate the JSON result
peusterm938143e2016-09-15 15:39:36 +0200703 return {"service_uuid": service_uuid, "size": size, "sha1": file_hash, "error": None}, 201
peusterme26487b2016-03-08 14:00:21 +0100704 except Exception as ex:
peusterm786cd542016-03-14 14:12:17 +0100705 LOG.exception("Service package upload failed:")
peusterm593ca582016-03-30 19:55:01 +0200706 return {"service_uuid": None, "size": 0, "sha1": None, "error": "upload failed"}, 500
peusterme26487b2016-03-08 14:00:21 +0100707
708 def get(self):
peusterm26455852016-03-08 14:23:53 +0100709 """
710 Return a list of UUID's of uploaded service packages.
711 :return: dict/list
712 """
peusterm075b46a2016-07-20 17:08:00 +0200713 LOG.info("GET /packages")
peusterm786cd542016-03-14 14:12:17 +0100714 return {"service_uuid_list": list(GK.services.iterkeys())}
peusterme26487b2016-03-08 14:00:21 +0100715
716
717class Instantiations(fr.Resource):
718
719 def post(self):
peusterm26455852016-03-08 14:23:53 +0100720 """
721 Instantiate a service specified by its UUID.
722 Will return a new UUID to identify the running service instance.
723 :return: UUID
724 """
edmaasd1626e52017-04-02 16:21:57 +0200725 LOG.info("POST /instantiations (or /requests) called")
peusterm64b45502016-03-16 21:15:14 +0100726 # try to extract the service uuid from the request
peusterm26455852016-03-08 14:23:53 +0100727 json_data = request.get_json(force=True)
peusterm64b45502016-03-16 21:15:14 +0100728 service_uuid = json_data.get("service_uuid")
729
730 # lets be a bit fuzzy here to make testing easier
peustermec5cefe2017-02-09 11:15:14 +0100731 if (service_uuid is None or service_uuid=="latest") and len(GK.services) > 0:
peusterm64b45502016-03-16 21:15:14 +0100732 # if we don't get a service uuid, we simple start the first service in the list
733 service_uuid = list(GK.services.iterkeys())[0]
peustermbea87372016-03-16 19:37:35 +0100734 if service_uuid in GK.services:
peusterm64b45502016-03-16 21:15:14 +0100735 # ok, we have a service uuid, lets start the service
peustermbea87372016-03-16 19:37:35 +0100736 service_instance_uuid = GK.services.get(service_uuid).start_service()
edmaas59b28fc2016-11-01 17:11:47 +0100737 return {"service_instance_uuid": service_instance_uuid}, 201
peustermbea87372016-03-16 19:37:35 +0100738 return "Service not found", 404
peusterme26487b2016-03-08 14:00:21 +0100739
740 def get(self):
peusterm26455852016-03-08 14:23:53 +0100741 """
742 Returns a list of UUIDs containing all running services.
743 :return: dict / list
744 """
peusterm075b46a2016-07-20 17:08:00 +0200745 LOG.info("GET /instantiations")
746 return {"service_instantiations_list": [
peusterm64b45502016-03-16 21:15:14 +0100747 list(s.instances.iterkeys()) for s in GK.services.itervalues()]}
peusterm786cd542016-03-14 14:12:17 +0100748
edmaasd454d542016-09-29 13:19:22 +0200749 def delete(self):
750 """
edmaas74d72492016-10-05 19:59:22 +0200751 Stops a running service specified by its service and instance UUID.
edmaasd454d542016-09-29 13:19:22 +0200752 """
edmaas74d72492016-10-05 19:59:22 +0200753 # try to extract the service and instance UUID from the request
edmaasd454d542016-09-29 13:19:22 +0200754 json_data = request.get_json(force=True)
755 service_uuid = json_data.get("service_uuid")
edmaas59b28fc2016-11-01 17:11:47 +0100756 instance_uuid = json_data.get("service_instance_uuid")
edmaas9c4fd112016-10-05 19:45:57 +0200757
758 # try to be fuzzy
759 if service_uuid is None and len(GK.services) > 0:
760 #if we don't get a service uuid, we simply stop the last service in the list
761 service_uuid = list(GK.services.iterkeys())[0]
762 if instance_uuid is None and len(GK.services[service_uuid].instances) > 0:
763 instance_uuid = list(GK.services[service_uuid].instances.iterkeys())[0]
edmaasd454d542016-09-29 13:19:22 +0200764
edmaas74d72492016-10-05 19:59:22 +0200765 if service_uuid in GK.services and instance_uuid in GK.services[service_uuid].instances:
766 # valid service and instance UUID, stop service
edmaas9c4fd112016-10-05 19:45:57 +0200767 GK.services.get(service_uuid).stop_service(instance_uuid)
edmaasf5d0cbe2016-12-11 15:12:26 +0100768 return "service instance with uuid %r stopped." % instance_uuid,200
edmaasd454d542016-09-29 13:19:22 +0200769 return "Service not found", 404
770
edmaas74d72492016-10-05 19:59:22 +0200771class Exit(fr.Resource):
edmaas9c4fd112016-10-05 19:45:57 +0200772
773 def put(self):
774 """
775 Stop the running Containernet instance regardless of data transmitted
776 """
edmaasf5d0cbe2016-12-11 15:12:26 +0100777 list(GK.dcs.values())[0].net.stop()
edmaas59b28fc2016-11-01 17:11:47 +0100778
779
780def initialize_GK():
781 global GK
782 GK = Gatekeeper()
783
edmaas9c4fd112016-10-05 19:45:57 +0200784
peusterme26487b2016-03-08 14:00:21 +0100785
786# create a single, global GK object
edmaas59b28fc2016-11-01 17:11:47 +0100787GK = None
788initialize_GK()
peusterme26487b2016-03-08 14:00:21 +0100789# setup Flask
790app = Flask(__name__)
791app.config['MAX_CONTENT_LENGTH'] = 512 * 1024 * 1024 # 512 MB max upload
792api = fr.Api(app)
793# define endpoints
peustermec5cefe2017-02-09 11:15:14 +0100794api.add_resource(Packages, '/packages', '/api/v2/packages')
795api.add_resource(Instantiations, '/instantiations', '/api/v2/instantiations', '/api/v2/requests')
edmaas74d72492016-10-05 19:59:22 +0200796api.add_resource(Exit, '/emulator/exit')
peusterme26487b2016-03-08 14:00:21 +0100797
798
edmaas59b28fc2016-11-01 17:11:47 +0100799#def initialize_GK():
800# global GK
801# GK = Gatekeeper()
peusterme26487b2016-03-08 14:00:21 +0100802
803
peusterm082378b2016-03-16 20:14:22 +0100804def start_rest_api(host, port, datacenters=dict()):
peustermbea87372016-03-16 19:37:35 +0100805 GK.dcs = datacenters
stevenvanrossembecc7c52016-11-07 05:52:01 +0100806 GK.net = get_dc_network()
peusterme26487b2016-03-08 14:00:21 +0100807 # start the Flask server (not the best performance but ok for our use case)
808 app.run(host=host,
809 port=port,
810 debug=True,
811 use_reloader=False # this is needed to run Flask in a non-main thread
812 )
813
814
815def ensure_dir(name):
816 if not os.path.exists(name):
peusterm7ec665d2016-03-14 15:20:44 +0100817 os.makedirs(name)
818
819
820def load_yaml(path):
821 with open(path, "r") as f:
822 try:
823 r = yaml.load(f)
824 except yaml.YAMLError as exc:
825 LOG.exception("YAML parse error")
826 r = dict()
827 return r
828
829
830def make_relative_path(path):
peusterm9d7d4b02016-03-23 19:56:44 +0100831 if path.startswith("file://"):
832 path = path.replace("file://", "", 1)
peusterm7ec665d2016-03-14 15:20:44 +0100833 if path.startswith("/"):
peusterm9d7d4b02016-03-23 19:56:44 +0100834 path = path.replace("/", "", 1)
peusterm7ec665d2016-03-14 15:20:44 +0100835 return path
836
837
stevenvanrossem6d5019a2016-08-12 23:00:22 +0200838def generate_lan_string(prefix, base, subnet_size=24, ip=0):
839 """
840 Helper to generate different network configuration strings.
841 """
842 r = "%s.%d.%d/%d" % (prefix, base, ip, subnet_size)
843 return r
844
845
peusterm6b5224d2016-07-20 13:20:31 +0200846def generate_subnet_strings(n, start=1, subnet_size=24, ip=0):
847 """
848 Helper to generate different network configuration strings.
849 """
850 r = list()
851 for i in range(start, start + n):
852 r.append("%d.0.0.%d/%d" % (i, ip, subnet_size))
853 return r
854
stevenvanrossembecc7c52016-11-07 05:52:01 +0100855def get_dc_network():
856 """
857 retrieve the DCnetwork where this dummygatekeeper (GK) connects to.
858 Assume at least 1 datacenter is connected to this GK, and that all datacenters belong to the same DCNetwork
859 :return:
860 """
861 assert (len(GK.dcs) > 0)
862 return GK.dcs.values()[0].net
peusterm6b5224d2016-07-20 13:20:31 +0200863
peusterme26487b2016-03-08 14:00:21 +0100864if __name__ == '__main__':
865 """
866 Lets allow to run the API in standalone mode.
867 """
peusterm398cd3b2016-03-21 15:04:54 +0100868 GK_STANDALONE_MODE = True
peusterme26487b2016-03-08 14:00:21 +0100869 logging.getLogger("werkzeug").setLevel(logging.INFO)
870 start_rest_api("0.0.0.0", 8000)
871