blob: 5cfc9efff545bbfec151ba54084d59c2a675be71 [file] [log] [blame]
peustermcbcd4c22015-12-28 11:33:42 +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).
peustermcbcd4c22015-12-28 11:33:42 +010027"""
peusterm7aae6852016-01-12 14:53:18 +010028from mininet.node import Docker
peustermea8db832016-03-08 10:25:58 +010029from mininet.link import Link
peusterma41f7862016-04-27 11:01:24 +020030from emuvim.dcemulator.resourcemodel import NotEnoughResourcesAvailable
peustermcbcd4c22015-12-28 11:33:42 +010031import logging
peusterm60bf8b82016-04-06 14:12:35 +020032import time
33import json
peustermcbcd4c22015-12-28 11:33:42 +010034
peustermf9a817d2016-07-18 09:06:04 +020035LOG = logging.getLogger("dcemulator.node")
peusterm3444ae42016-03-16 20:46:41 +010036LOG.setLevel(logging.DEBUG)
37
peustermcbcd4c22015-12-28 11:33:42 +010038
39DCDPID_BASE = 1000 # start of switch dpid's used for data center switches
40
peusterm7aae6852016-01-12 14:53:18 +010041class EmulatorCompute(Docker):
42 """
43 Emulator specific compute node class.
peusterm5877ea22016-05-11 13:44:59 +020044 Inherits from Containernet's Docker host class.
peusterm7aae6852016-01-12 14:53:18 +010045 Represents a single container connected to a (logical)
46 data center.
47 We can add emulator specific helper functions to it.
48 """
49
50 def __init__(
51 self, name, dimage, **kwargs):
peusterm42f08be2016-03-10 21:56:34 +010052 self.datacenter = kwargs.get("datacenter") # pointer to current DC
53 self.flavor_name = kwargs.get("flavor_name")
peusterm3444ae42016-03-16 20:46:41 +010054 LOG.debug("Starting compute instance %r in data center %r" % (name, str(self.datacenter)))
peusterm7aae6852016-01-12 14:53:18 +010055 # call original Docker.__init__
56 Docker.__init__(self, name, dimage, **kwargs)
57
58 def getNetworkStatus(self):
59 """
60 Helper method to receive information about the virtual networks
61 this compute instance is connected to.
62 """
stevenvanrossem566779d2016-11-07 06:33:44 +010063 # get all links and find dc switch interface
64 networkStatusList = []
65 for i in self.intfList():
66 vnf_name = self.name
67 vnf_interface = str(i)
68 dc_port_name = self.datacenter.net.find_connected_dc_interface(vnf_name, vnf_interface)
69 # format list of tuples (name, Ip, MAC, isUp, status, dc_portname)
70 intf_dict = {'intf_name': str(i), 'ip': i.IP(), 'mac': i.MAC(), 'up': i.isUp(), 'status': i.status(), 'dc_portname': dc_port_name}
71 networkStatusList.append(intf_dict)
72
73 return networkStatusList
peusterm7aae6852016-01-12 14:53:18 +010074
75 def getStatus(self):
76 """
77 Helper method to receive information about this compute instance.
78 """
peusterm056fd452016-01-12 15:32:25 +010079 status = {}
80 status["name"] = self.name
81 status["network"] = self.getNetworkStatus()
stevenvanrosseme66ef122016-05-03 11:22:54 +020082 status["docker_network"] = self.dcinfo['NetworkSettings']['IPAddress']
peusterm056fd452016-01-12 15:32:25 +010083 status["image"] = self.dimage
peusterm36c070c2016-04-16 17:39:01 +020084 status["flavor_name"] = self.flavor_name
stevenvanrossem08272492017-02-10 17:18:44 +010085 status["cpu_quota"] = self.resources.get('cpu_quota')
86 status["cpu_period"] = self.resources.get('cpu_period')
87 status["cpu_shares"] = self.resources.get('cpu_shares')
88 status["cpuset"] = self.resources.get('cpuset_cpus')
89 status["mem_limit"] = self.resources.get('mem_limit')
90 status["memswap_limit"] = self.resources.get('memswap_limit')
peusterm056fd452016-01-12 15:32:25 +010091 status["state"] = self.dcli.inspect_container(self.dc)["State"]
92 status["id"] = self.dcli.inspect_container(self.dc)["Id"]
stevenvanrossem8a9df3f2017-01-27 22:35:04 +010093 status["short_id"] = self.dcli.inspect_container(self.dc)["Id"][:12]
stevenvanrossem18165082017-04-07 17:20:50 +020094 status["hostname"] = self.dcli.inspect_container(self.dc)["Config"]['Hostname']
peusterm2ec74e12016-01-13 11:17:53 +010095 status["datacenter"] = (None if self.datacenter is None
peusterma47db032016-02-04 14:55:29 +010096 else self.datacenter.label)
stevenvanrossem18165082017-04-07 17:20:50 +020097
peusterm056fd452016-01-12 15:32:25 +010098 return status
peusterm7aae6852016-01-12 14:53:18 +010099
100
peustermcbcd4c22015-12-28 11:33:42 +0100101class Datacenter(object):
102 """
103 Represents a logical data center to which compute resources
104 (Docker containers) can be added at runtime.
peusterme4e89d32016-01-07 09:14:54 +0100105
106 Will also implement resource bookkeeping in later versions.
peustermcbcd4c22015-12-28 11:33:42 +0100107 """
108
peusterma47db032016-02-04 14:55:29 +0100109 DC_COUNTER = 1
110
peusterm60bf8b82016-04-06 14:12:35 +0200111 def __init__(self, label, metadata={}, resource_log_path=None):
peustermcbcd4c22015-12-28 11:33:42 +0100112 self.net = None # DCNetwork to which we belong
peusterma47db032016-02-04 14:55:29 +0100113 # each node (DC) has a short internal name used by Mininet
114 # this is caused by Mininets naming limitations for swtiches etc.
115 self.name = "dc%d" % Datacenter.DC_COUNTER
116 Datacenter.DC_COUNTER += 1
peusterm53504942016-02-04 16:09:28 +0100117 # use this for user defined names that can be longer than self.name
edmaas7e084ea2016-11-28 13:50:23 +0100118 self.label = label
peusterm53504942016-02-04 16:09:28 +0100119 # dict to store arbitrary metadata (e.g. latitude and longitude)
120 self.metadata = metadata
peusterm60bf8b82016-04-06 14:12:35 +0200121 # path to which resource information should be logged (e.g. for experiments). None = no logging
122 self.resource_log_path = resource_log_path
peusterm42f08be2016-03-10 21:56:34 +0100123 # first prototype assumes one "bigswitch" per DC
124 self.switch = None
125 # keep track of running containers
126 self.containers = {}
127 # pointer to assigned resource model
128 self._resource_model = None
peustermcbcd4c22015-12-28 11:33:42 +0100129
peusterme26487b2016-03-08 14:00:21 +0100130 def __repr__(self):
131 return self.label
132
peustermcbcd4c22015-12-28 11:33:42 +0100133 def _get_next_dc_dpid(self):
134 global DCDPID_BASE
135 DCDPID_BASE += 1
136 return DCDPID_BASE
137
138 def create(self):
139 """
140 Each data center is represented by a single switch to which
141 compute resources can be connected at run time.
142
peusterm9c252b62016-01-06 16:59:53 +0100143 TODO: This will be changed in the future to support multiple networks
peustermcbcd4c22015-12-28 11:33:42 +0100144 per data center
145 """
peusterm293cbc32016-01-13 17:05:28 +0100146 self.switch = self.net.addSwitch(
peustermcbcd4c22015-12-28 11:33:42 +0100147 "%s.s1" % self.name, dpid=hex(self._get_next_dc_dpid())[2:])
peusterm3444ae42016-03-16 20:46:41 +0100148 LOG.debug("created data center switch: %s" % str(self.switch))
peustermcbcd4c22015-12-28 11:33:42 +0100149
150 def start(self):
151 pass
152
edmaas7e084ea2016-11-28 13:50:23 +0100153 def startCompute(self, name, image=None, command=None, network=None, flavor_name="tiny", **params):
peusterme4e89d32016-01-07 09:14:54 +0100154 """
155 Create a new container as compute resource and connect it to this
156 data center.
peusterm7f8e8402016-02-28 18:38:10 +0100157 :param name: name (string)
158 :param image: image name (string)
159 :param command: command (string)
160 :param network: networks list({"ip": "10.0.0.254/8"}, {"ip": "11.0.0.254/24"})
peusterm42f08be2016-03-10 21:56:34 +0100161 :param flavor_name: name of the flavor for this compute container
peusterm7f8e8402016-02-28 18:38:10 +0100162 :return:
peusterme4e89d32016-01-07 09:14:54 +0100163 """
peusterm4e98b632016-01-12 14:08:07 +0100164 assert name is not None
peusterm9165ef92016-01-13 13:50:39 +0100165 # no duplications
peustermbd44f4a2016-01-13 14:53:30 +0100166 if name in [c.name for c in self.net.getAllContainers()]:
peusterm9165ef92016-01-13 13:50:39 +0100167 raise Exception("Container with name %s already exists." % name)
peusterm4e98b632016-01-12 14:08:07 +0100168 # set default parameter
169 if image is None:
peusterm0dc3ae02016-04-27 09:33:28 +0200170 image = "ubuntu:trusty"
peusterm4e98b632016-01-12 14:08:07 +0100171 if network is None:
172 network = {} # {"ip": "10.0.0.254/8"}
peusterm7f8e8402016-02-28 18:38:10 +0100173 if isinstance(network, dict):
174 network = [network] # if we have only one network, put it in a list
175 if isinstance(network, list):
176 if len(network) < 1:
177 network.append({})
178
stevenvanrossemb3f34172016-11-16 23:30:57 +0100179 # apply hard-set resource limits=0
stevenvanrosseme8d86282017-01-28 00:52:22 +0100180 cpu_percentage = params.get('cpu_percent')
stevenvanrossemb3f34172016-11-16 23:30:57 +0100181 if cpu_percentage:
stevenvanrosseme8d86282017-01-28 00:52:22 +0100182 params['cpu_period'] = self.net.cpu_period
183 params['cpu_quota'] = self.net.cpu_period * float(cpu_percentage)
stevenvanrossemb3f34172016-11-16 23:30:57 +0100184
peusterm7f8e8402016-02-28 18:38:10 +0100185 # create the container
peusterm42f08be2016-03-10 21:56:34 +0100186 d = self.net.addDocker(
187 "%s" % (name),
188 dimage=image,
189 dcmd=command,
190 datacenter=self,
stevenvanrossemb3f34172016-11-16 23:30:57 +0100191 flavor_name=flavor_name,
stevenvanrosseme8d86282017-01-28 00:52:22 +0100192 environment = {'VNF_NAME':name},
edmaas7e084ea2016-11-28 13:50:23 +0100193 **params
peusterm71b3a2f2016-03-19 12:56:11 +0100194 )
peustermd18559d2016-04-16 04:59:23 +0200195
stevenvanrossemb3f34172016-11-16 23:30:57 +0100196
197
peustermd18559d2016-04-16 04:59:23 +0200198 # apply resource limits to container if a resource model is defined
199 if self._resource_model is not None:
peusterma41f7862016-04-27 11:01:24 +0200200 try:
201 self._resource_model.allocate(d)
202 self._resource_model.write_allocation_log(d, self.resource_log_path)
203 except NotEnoughResourcesAvailable as ex:
204 LOG.warning("Allocation of container %r was blocked by resource model." % name)
205 LOG.info(ex.message)
206 # ensure that we remove the container
207 self.net.removeDocker(name)
208 return None
peustermd18559d2016-04-16 04:59:23 +0200209
peusterm7f8e8402016-02-28 18:38:10 +0100210 # connect all given networks
stevenvanrossem14c89052016-04-10 23:49:59 +0200211 # if no --net option is given, network = [{}], so 1 empty dict in the list
212 # this results in 1 default interface with a default ip address
peusterm7f8e8402016-02-28 18:38:10 +0100213 for nw in network:
peusterm761c14d2016-07-19 09:31:19 +0200214 # clean up network configuration (e.g. RTNETLINK does not allow ':' in intf names
215 if nw.get("id") is not None:
216 nw["id"] = self._clean_ifname(nw["id"])
peusterm5877ea22016-05-11 13:44:59 +0200217 # TODO we cannot use TCLink here (see: https://github.com/mpeuster/containernet/issues/3)
stevenvanrossem5b376412016-05-04 15:34:49 +0200218 self.net.addLink(d, self.switch, params1=nw, cls=Link, intfName1=nw.get('id'))
peusterm2ec74e12016-01-13 11:17:53 +0100219 # do bookkeeping
peusterma2ad9ff2016-01-11 17:10:07 +0100220 self.containers[name] = d
peustermfa4bcc72016-01-15 11:08:09 +0100221 return d # we might use UUIDs for naming later on
peustermcbcd4c22015-12-28 11:33:42 +0100222
peusterm7aae6852016-01-12 14:53:18 +0100223 def stopCompute(self, name):
peusterma2ad9ff2016-01-11 17:10:07 +0100224 """
225 Stop and remove a container from this data center.
226 """
peusterm9165ef92016-01-13 13:50:39 +0100227 assert name is not None
228 if name not in self.containers:
229 raise Exception("Container with name %s not found." % name)
peusterm60bf8b82016-04-06 14:12:35 +0200230 LOG.debug("Stopping compute instance %r in data center %r" % (name, str(self)))
peustermd18559d2016-04-16 04:59:23 +0200231
stevenvanrossem461941c2016-05-10 11:41:29 +0200232 # stop the monitored metrics
233 if self.net.monitor_agent is not None:
234 self.net.monitor_agent.stop_metric(name)
235
peusterm42f08be2016-03-10 21:56:34 +0100236 # call resource model and free resources
237 if self._resource_model is not None:
peustermd18559d2016-04-16 04:59:23 +0200238 self._resource_model.free(self.containers[name])
peusterm36c070c2016-04-16 17:39:01 +0200239 self._resource_model.write_free_log(self.containers[name], self.resource_log_path)
peusterm60bf8b82016-04-06 14:12:35 +0200240
peustermd18559d2016-04-16 04:59:23 +0200241 # remove links
242 self.net.removeLink(
243 link=None, node1=self.containers[name], node2=self.switch)
244
245 # remove container
246 self.net.removeDocker("%s" % (name))
247 del self.containers[name]
248
peusterm4e98b632016-01-12 14:08:07 +0100249 return True
250
stevenvanrossemce032e12017-04-05 17:31:20 +0200251 def attachExternalSAP(self, sap_name, sap_ip):
252 # create SAP as OVS internal interface
253 sap_intf = self.switch.attachInternalIntf(sap_name, sap_ip)
254
255 # add this as a link to the DCnetwork graph, so it is available for routing
256 attr_dict2 = {'src_port_id': sap_name, 'src_port_nr': None,
257 'src_port_name': sap_name,
258 'dst_port_id': self.switch.ports[sap_intf], 'dst_port_nr': self.switch.ports[sap_intf],
259 'dst_port_name': sap_intf.name}
260 self.net.DCNetwork_graph.add_edge(sap_name, self.switch.name, attr_dict=attr_dict2)
261
262 attr_dict2 = {'dst_port_id': sap_name, 'dst_port_nr': None,
263 'dst_port_name': sap_name,
264 'src_port_id': self.switch.ports[sap_intf], 'src_port_nr': self.switch.ports[sap_intf],
265 'src_port_name': sap_intf.name}
266 self.net.DCNetwork_graph.add_edge(self.switch.name, sap_name, attr_dict=attr_dict2)
267
268
peusterm4e98b632016-01-12 14:08:07 +0100269 def listCompute(self):
270 """
271 Return a list of all running containers assigned to this
272 data center.
273 """
peusterm5aa8cf22016-01-15 11:12:17 +0100274 return list(self.containers.itervalues())
peustermd313dc12016-02-04 15:36:02 +0100275
276 def getStatus(self):
277 """
278 Return a dict with status information about this DC.
279 """
peusterm53504942016-02-04 16:09:28 +0100280 return {
281 "label": self.label,
282 "internalname": self.name,
283 "switch": self.switch.name,
284 "n_running_containers": len(self.containers),
285 "metadata": self.metadata
286 }
peusterm42f08be2016-03-10 21:56:34 +0100287
288 def assignResourceModel(self, rm):
peusterm279565d2016-03-19 10:36:52 +0100289 """
290 Assign a resource model to this DC.
291 :param rm: a BaseResourceModel object
292 :return:
293 """
peusterm42f08be2016-03-10 21:56:34 +0100294 if self._resource_model is not None:
295 raise Exception("There is already an resource model assigned to this DC.")
296 self._resource_model = rm
297 self.net.rm_registrar.register(self, rm)
peusterm3444ae42016-03-16 20:46:41 +0100298 LOG.info("Assigned RM: %r to DC: %r" % (rm, self))
peusterm42f08be2016-03-10 21:56:34 +0100299
peusterm761c14d2016-07-19 09:31:19 +0200300 @staticmethod
301 def _clean_ifname(name):
302 """
303 Cleans up given string to be a
304 RTNETLINK compatible interface name.
305 :param name: string
306 :return: string
307 """
308 if name is None:
309 return "if0"
310 name = name.replace(":", "-")
311 name = name.replace(" ", "-")
312 name = name.replace(".", "-")
313 name = name.replace("_", "-")
314 return name
315