blob: baa1830e1cda43d922526c88b158878142fd6572 [file] [log] [blame]
peusterm72f09882018-05-15 17:10:27 +02001# Copyright (c) 2015 SONATA-NFV and Paderborn University
2# ALL RIGHTS RESERVED.
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15#
16# Neither the name of the SONATA-NFV, Paderborn University
17# nor the names of its contributors may be used to endorse or promote
18# products derived from this software without specific prior written
19# permission.
20#
21# This work has been performed in the framework of the SONATA project,
22# funded by the European Commission under Grant number 671517 through
23# the Horizon 2020 and 5G-PPP programmes. The authors would like to
24# acknowledge the contributions of their colleagues of the SONATA
25# partner consortium (www.sonata-nfv.eu).
hadik3r237d3f52016-06-27 17:57:49 +020026import logging
stevenvanrossem73efd192016-06-29 01:44:07 +020027from flask_restful import Resource
28from flask import request
hadik3r237d3f52016-06-27 17:57:49 +020029import json
peusterm2aecf1d2017-11-29 12:02:42 +010030import threading
hadik3r237d3f52016-06-27 17:57:49 +020031
peusterm5b428742017-06-16 10:08:11 +020032logging.basicConfig()
hadik3r237d3f52016-06-27 17:57:49 +020033
peustermdfc14602017-01-13 08:22:45 +010034CORS_HEADER = {'Access-Control-Allow-Origin': '*'}
35
stevenvanrossemc63c5492017-05-08 16:10:13 +020036# the dcs dict is set in the rest_api_endpoint.py upon datacenter init
hadik3r237d3f52016-06-27 17:57:49 +020037dcs = {}
38
hadik3ra9dd9012016-08-09 10:51:13 +020039
40class Compute(Resource):
hadik3r237d3f52016-06-27 17:57:49 +020041 """
42 Start a new compute instance: A docker container (note: zerorpc does not support keyword arguments)
43 :param dc_label: name of the DC
44 :param compute_name: compute container name
45 :param image: image name
46 :param command: command to execute
47 :param network: list of all interface of the vnf, with their parameters (id=id1,ip=x.x.x.x/x),...
stevenvanrossem73efd192016-06-29 01:44:07 +020048 example networks list({"id":"input","ip": "10.0.0.254/8"}, {"id":"output","ip": "11.0.0.254/24"})
49 :return: docker inspect dict of deployed docker
hadik3r237d3f52016-06-27 17:57:49 +020050 """
stevenvanrossemc63c5492017-05-08 16:10:13 +020051
hadik3r237d3f52016-06-27 17:57:49 +020052 global dcs
53
stevenvanrossemb3f34172016-11-16 23:30:57 +010054 def put(self, dc_label, compute_name, resource=None, value=None):
hadik3ra9dd9012016-08-09 10:51:13 +020055
stevenvanrossemb3f34172016-11-16 23:30:57 +010056 # deploy new container
hadik3ra9dd9012016-08-09 10:51:13 +020057 # check if json data is a dict
58 data = request.json
59 if data is None:
60 data = {}
peusterm72f09882018-05-15 17:10:27 +020061 elif not isinstance(data, dict):
hadik3ra9dd9012016-08-09 10:51:13 +020062 data = json.loads(request.json)
63
64 network = data.get("network")
65 nw_list = self._parse_network(network)
66 image = data.get("image")
67 command = data.get("docker_command")
68
hadik3r237d3f52016-06-27 17:57:49 +020069 try:
peusterm2aecf1d2017-11-29 12:02:42 +010070 if compute_name is None or compute_name == "None":
71 logging.error("No compute name defined in request.")
72 return "No compute name defined in request.", 500, CORS_HEADER
73 if dc_label is None or dcs.get(dc_label) is None:
74 logging.error("No datacenter defined in request.")
75 return "No datacenter defined in request.", 500, CORS_HEADER
hadik3r237d3f52016-06-27 17:57:49 +020076 c = dcs.get(dc_label).startCompute(
hadik3ra9dd9012016-08-09 10:51:13 +020077 compute_name, image=image, command=command, network=nw_list)
peusterm2aecf1d2017-11-29 12:02:42 +010078 # (if available) trigger emu. entry point given in Dockerfile
79 try:
80 config = c.dcinfo.get("Config", dict())
81 env = config.get("Env", list())
schillinge3bb8b252019-03-14 22:46:14 +010082 legacy_command_execution = False
peusterm2aecf1d2017-11-29 12:02:42 +010083 for env_var in env:
84 var, cmd = map(str.strip, map(str, env_var.split('=', 1)))
peusterm72f09882018-05-15 17:10:27 +020085 logging.debug("%r = %r" % (var, cmd))
86 if var == "SON_EMU_CMD" or var == "VIM_EMU_CMD":
peusterm5b8ac4f2019-02-12 19:58:24 +010087 logging.info("Executing script in '{}': {}={}"
88 .format(compute_name, var, cmd))
peusterm72f09882018-05-15 17:10:27 +020089 # execute command in new thread to ensure that API is
90 # not blocked by VNF
peusterm2aecf1d2017-11-29 12:02:42 +010091 t = threading.Thread(target=c.cmdPrint, args=(cmd,))
92 t.daemon = True
93 t.start()
schillinge3bb8b252019-03-14 22:46:14 +010094 legacy_command_execution = True
95 break
96 if not legacy_command_execution:
97 c.start()
peusterm2aecf1d2017-11-29 12:02:42 +010098 except Exception as ex:
99 logging.warning("Couldn't run Docker entry point VIM_EMU_CMD")
Rafael Schellenbergaa8823c2019-12-06 15:03:56 +0100100 logging.exception(
101 "Exception: " + str(ex) + "; " + str(type(ex))
102 )
hadik3r237d3f52016-06-27 17:57:49 +0200103 # return docker inspect dict
peustermdfc14602017-01-13 08:22:45 +0100104 return c.getStatus(), 200, CORS_HEADER
hadik3r237d3f52016-06-27 17:57:49 +0200105 except Exception as ex:
106 logging.exception("API error.")
peustermdfc14602017-01-13 08:22:45 +0100107 return ex.message, 500, CORS_HEADER
hadik3r237d3f52016-06-27 17:57:49 +0200108
hadik3ra9dd9012016-08-09 10:51:13 +0200109 def get(self, dc_label, compute_name):
110
111 logging.debug("API CALL: compute status")
112
113 try:
peusterm72f09882018-05-15 17:10:27 +0200114 return dcs.get(dc_label).containers.get(
115 compute_name).getStatus(), 200, CORS_HEADER
hadik3ra9dd9012016-08-09 10:51:13 +0200116 except Exception as ex:
117 logging.exception("API error.")
peustermdfc14602017-01-13 08:22:45 +0100118 return ex.message, 500, CORS_HEADER
hadik3ra9dd9012016-08-09 10:51:13 +0200119
120 def delete(self, dc_label, compute_name):
121 logging.debug("API CALL: compute stop")
122 try:
peusterm72f09882018-05-15 17:10:27 +0200123 return dcs.get(dc_label).stopCompute(
124 compute_name), 200, CORS_HEADER
hadik3ra9dd9012016-08-09 10:51:13 +0200125 except Exception as ex:
126 logging.exception("API error.")
peustermdfc14602017-01-13 08:22:45 +0100127 return ex.message, 500, CORS_HEADER
hadik3ra9dd9012016-08-09 10:51:13 +0200128
stevenvanrossemff6b4042016-07-14 20:51:37 +0200129 def _parse_network(self, network_str):
130 '''
131 parse the options for all network interfaces of the vnf
132 :param network_str: (id=x,ip=x.x.x.x/x), ...
133 :return: list of dicts [{"id":x,"ip":"x.x.x.x/x"}, ...]
134 '''
135 nw_list = list()
136
stevenvanrossem9c8a4122016-07-16 03:23:13 +0200137 # TODO make this more robust with regex check
hadik3ra9dd9012016-08-09 10:51:13 +0200138 if network_str is None:
stevenvanrossemff6b4042016-07-14 20:51:37 +0200139 return nw_list
140
141 networks = network_str[1:-1].split('),(')
142 for nw in networks:
143 nw_dict = dict(tuple(e.split('=')) for e in nw.split(','))
144 nw_list.append(nw_dict)
145
146 return nw_list
147
hadik3r237d3f52016-06-27 17:57:49 +0200148
149class ComputeList(Resource):
hadik3r237d3f52016-06-27 17:57:49 +0200150 global dcs
151
stevenvanrossem65819b82016-08-05 18:21:47 +0200152 def get(self, dc_label=None):
hadik3r237d3f52016-06-27 17:57:49 +0200153 logging.debug("API CALL: compute list")
154 try:
stevenvanrossem34566442016-08-10 00:13:24 +0200155 if dc_label is None or dc_label == 'None':
hadik3r237d3f52016-06-27 17:57:49 +0200156 # return list with all compute nodes in all DCs
157 all_containers = []
Rafael Schellenbergaa8823c2019-12-06 15:03:56 +0100158 for dc in dcs.values():
hadik3r237d3f52016-06-27 17:57:49 +0200159 all_containers += dc.listCompute()
peusterm72f09882018-05-15 17:10:27 +0200160 container_list = [(c.name, c.getStatus())
161 for c in all_containers]
peusterm0719f4e2019-06-18 16:55:26 +0200162 return container_list, 200, CORS_HEADER
hadik3r237d3f52016-06-27 17:57:49 +0200163 else:
164 # return list of compute nodes for specified DC
peusterm72f09882018-05-15 17:10:27 +0200165 container_list = [(c.name, c.getStatus())
166 for c in dcs.get(dc_label).listCompute()]
peusterm0719f4e2019-06-18 16:55:26 +0200167 return container_list, 200, CORS_HEADER
hadik3r237d3f52016-06-27 17:57:49 +0200168 except Exception as ex:
169 logging.exception("API error.")
peustermdfc14602017-01-13 08:22:45 +0100170 return ex.message, 500, CORS_HEADER
hadik3r237d3f52016-06-27 17:57:49 +0200171
peusterm72f09882018-05-15 17:10:27 +0200172
stevenvanrossem7953f2f2017-02-10 12:56:15 +0100173class ComputeResources(Resource):
174 """
175 Update the container's resources using the docker.update function
176 re-using the same parameters:
177 url params:
178 blkio_weight
179 cpu_period, cpu_quota, cpu_shares
180 cpuset_cpus
181 cpuset_mems
182 mem_limit
183 mem_reservation
184 memswap_limit
185 kernel_memory
186 restart_policy
187 see https://docs.docker.com/engine/reference/commandline/update/
188 or API docs: https://docker-py.readthedocs.io/en/stable/api.html#module-docker.api.container
189 :param dc_label: name of the DC
190 :param compute_name: compute container name
191
192 :return: docker inspect dict of deployed docker
193 """
194 global dcs
195
196 def put(self, dc_label, compute_name):
197 logging.debug("REST CALL: update container resources")
198
199 try:
200 c = self._update_resources(dc_label, compute_name)
201 return c.getStatus(), 200, CORS_HEADER
202 except Exception as ex:
203 logging.exception("API error.")
204 return ex.message, 500, CORS_HEADER
205
206 def _update_resources(self, dc_label, compute_name):
207
208 # get URL parameters
209 params = request.args
210 # then no data
211 if params is None:
212 params = {}
peusterm72f09882018-05-15 17:10:27 +0200213 logging.debug(
214 "REST CALL: update container resources {0}".format(params))
215 # check if container exists
stevenvanrossem7953f2f2017-02-10 12:56:15 +0100216 d = dcs.get(dc_label).net.getNodeByName(compute_name)
217
218 # general request of cpu percentage
219 # create a mutable copy
220 params = params.to_dict()
stevenvanrossem33d76892017-02-13 00:13:37 +0100221 if 'cpu_bw' in params:
stevenvanrossem7953f2f2017-02-10 12:56:15 +0100222 cpu_period = int(dcs.get(dc_label).net.cpu_period)
stevenvanrossem33d76892017-02-13 00:13:37 +0100223 value = params.get('cpu_bw')
stevenvanrossem7953f2f2017-02-10 12:56:15 +0100224 cpu_quota = int(cpu_period * float(value))
peusterm72f09882018-05-15 17:10:27 +0200225 # put default values back
stevenvanrossem7953f2f2017-02-10 12:56:15 +0100226 if float(value) <= 0:
227 cpu_period = 100000
228 cpu_quota = -1
229 params['cpu_period'] = cpu_period
230 params['cpu_quota'] = cpu_quota
peusterm72f09882018-05-15 17:10:27 +0200231 # d.updateCpuLimit(cpu_period=cpu_period, cpu_quota=cpu_quota)
stevenvanrossem7953f2f2017-02-10 12:56:15 +0100232
233 # only pass allowed keys to docker
234 allowed_keys = ['blkio_weight', 'cpu_period', 'cpu_quota', 'cpu_shares', 'cpuset_cpus',
235 'cpuset_mems', 'mem_limit', 'mem_reservation', 'memswap_limit',
236 'kernel_memory', 'restart_policy']
peusterm72f09882018-05-15 17:10:27 +0200237 filtered_params = {key: params[key]
238 for key in allowed_keys if key in params}
stevenvanrossem7953f2f2017-02-10 12:56:15 +0100239
240 d.update_resources(**filtered_params)
241
242 return d
hadik3r237d3f52016-06-27 17:57:49 +0200243
peusterm72f09882018-05-15 17:10:27 +0200244
hadik3r237d3f52016-06-27 17:57:49 +0200245class DatacenterList(Resource):
hadik3r237d3f52016-06-27 17:57:49 +0200246 global dcs
247
248 def get(self):
249 logging.debug("API CALL: datacenter list")
250 try:
Rafael Schellenbergaa8823c2019-12-06 15:03:56 +0100251 return [d.getStatus() for d in dcs.values()], 200, CORS_HEADER
hadik3r237d3f52016-06-27 17:57:49 +0200252 except Exception as ex:
253 logging.exception("API error.")
peustermdfc14602017-01-13 08:22:45 +0100254 return ex.message, 500, CORS_HEADER
hadik3r237d3f52016-06-27 17:57:49 +0200255
hadik3r237d3f52016-06-27 17:57:49 +0200256
hadik3ra9dd9012016-08-09 10:51:13 +0200257class DatacenterStatus(Resource):
hadik3r237d3f52016-06-27 17:57:49 +0200258 global dcs
259
260 def get(self, dc_label):
261 logging.debug("API CALL: datacenter status")
262 try:
peustermdfc14602017-01-13 08:22:45 +0100263 return dcs.get(dc_label).getStatus(), 200, CORS_HEADER
hadik3r237d3f52016-06-27 17:57:49 +0200264 except Exception as ex:
265 logging.exception("API error.")
peustermdfc14602017-01-13 08:22:45 +0100266 return ex.message, 500, CORS_HEADER