1
|
|
|
"""Main module of kytos/topology Kytos Network Application. |
2
|
|
|
|
3
|
|
|
Manage the network topology |
4
|
|
|
""" |
5
|
|
|
# pylint: disable=wrong-import-order |
6
|
1 |
|
import pathlib |
7
|
1 |
|
import time |
8
|
1 |
|
from collections import defaultdict |
9
|
1 |
|
from datetime import timezone |
10
|
1 |
|
from threading import Lock |
11
|
1 |
|
from typing import List, Optional |
12
|
|
|
|
13
|
1 |
|
from kytos.core import KytosEvent, KytosNApp, log, rest |
14
|
1 |
|
from kytos.core.common import EntityStatus |
15
|
1 |
|
from kytos.core.exceptions import (KytosInvalidTagRanges, |
16
|
|
|
KytosLinkCreationError, KytosTagError) |
17
|
1 |
|
from kytos.core.helpers import listen_to, load_spec, now, validate_openapi |
18
|
1 |
|
from kytos.core.interface import Interface |
19
|
1 |
|
from kytos.core.link import Link |
20
|
1 |
|
from kytos.core.rest_api import (HTTPException, JSONResponse, Request, |
21
|
|
|
content_type_json_or_415, get_json_or_400) |
22
|
1 |
|
from kytos.core.switch import Switch |
23
|
1 |
|
from kytos.core.tag_ranges import get_tag_ranges |
24
|
1 |
|
from napps.kytos.topology import settings |
25
|
|
|
|
26
|
1 |
|
from .controllers import TopoController |
27
|
1 |
|
from .exceptions import RestoreError |
28
|
1 |
|
from .models import Topology |
29
|
|
|
|
30
|
1 |
|
DEFAULT_LINK_UP_TIMER = 10 |
31
|
|
|
|
32
|
|
|
|
33
|
1 |
|
class Main(KytosNApp): # pylint: disable=too-many-public-methods |
34
|
|
|
"""Main class of kytos/topology NApp. |
35
|
|
|
|
36
|
|
|
This class is the entry point for this napp. |
37
|
|
|
""" |
38
|
|
|
|
39
|
1 |
|
spec = load_spec(pathlib.Path(__file__).parent / "openapi.yml") |
40
|
|
|
|
41
|
1 |
|
def setup(self): |
42
|
|
|
"""Initialize the NApp's links list.""" |
43
|
1 |
|
self.links = {} |
44
|
1 |
|
self.intf_available_tags = {} |
45
|
1 |
|
self.link_up_timer = getattr(settings, 'LINK_UP_TIMER', |
46
|
|
|
DEFAULT_LINK_UP_TIMER) |
47
|
|
|
|
48
|
1 |
|
self._links_lock = Lock() |
49
|
1 |
|
self._links_notify_lock = defaultdict(Lock) |
50
|
|
|
# to keep track of potential unorded scheduled interface events |
51
|
1 |
|
self._intfs_lock = defaultdict(Lock) |
52
|
1 |
|
self._intfs_updated_at = {} |
53
|
1 |
|
self._intfs_tags_updated_at = {} |
54
|
1 |
|
self.link_up = set() |
55
|
1 |
|
self.link_status_lock = Lock() |
56
|
1 |
|
self.topo_controller = self.get_topo_controller() |
57
|
1 |
|
Link.register_status_func(f"{self.napp_id}_link_up_timer", |
58
|
|
|
self.link_status_hook_link_up_timer) |
59
|
1 |
|
self.topo_controller.bootstrap_indexes() |
60
|
1 |
|
self.load_topology() |
61
|
|
|
|
62
|
1 |
|
@staticmethod |
63
|
1 |
|
def get_topo_controller() -> TopoController: |
64
|
|
|
"""Get TopoController.""" |
65
|
|
|
return TopoController() |
66
|
|
|
|
67
|
1 |
|
def execute(self): |
68
|
|
|
"""Execute once when the napp is running.""" |
69
|
|
|
pass |
70
|
|
|
|
71
|
1 |
|
def shutdown(self): |
72
|
|
|
"""Do nothing.""" |
73
|
|
|
log.info('NApp kytos/topology shutting down.') |
74
|
|
|
|
75
|
1 |
|
def _get_metadata(self, request: Request) -> dict: |
76
|
|
|
"""Return a JSON with metadata.""" |
77
|
1 |
|
content_type_json_or_415(request) |
78
|
1 |
|
metadata = get_json_or_400(request, self.controller.loop) |
79
|
1 |
|
if not isinstance(metadata, dict): |
80
|
1 |
|
raise HTTPException(400, "Invalid metadata value: {metadata}") |
81
|
1 |
|
return metadata |
82
|
|
|
|
83
|
1 |
|
def _get_link_or_create(self, endpoint_a, endpoint_b): |
84
|
|
|
"""Get an existing link or create a new one. |
85
|
|
|
|
86
|
|
|
Returns: |
87
|
|
|
Tuple(Link, bool): Link and a boolean whether it has been created. |
88
|
|
|
""" |
89
|
1 |
|
new_link = Link(endpoint_a, endpoint_b) |
90
|
|
|
|
91
|
1 |
|
for link in self.links.values(): |
92
|
1 |
|
if new_link == link: |
93
|
1 |
|
return (link, False) |
94
|
|
|
|
95
|
1 |
|
self.links[new_link.id] = new_link |
96
|
1 |
|
return (new_link, True) |
97
|
|
|
|
98
|
1 |
|
def _get_switches_dict(self): |
99
|
|
|
"""Return a dictionary with the known switches.""" |
100
|
1 |
|
switches = {'switches': {}} |
101
|
1 |
|
for idx, switch in enumerate(self.controller.switches.copy().values()): |
102
|
1 |
|
switch_data = switch.as_dict() |
103
|
1 |
|
if not all(key in switch_data['metadata'] |
104
|
|
|
for key in ('lat', 'lng')): |
105
|
|
|
# Switches are initialized somewhere in the ocean |
106
|
|
|
switch_data['metadata']['lat'] = str(0.0) |
107
|
|
|
switch_data['metadata']['lng'] = str(-30.0+idx*10.0) |
108
|
1 |
|
switches['switches'][switch.id] = switch_data |
109
|
1 |
|
return switches |
110
|
|
|
|
111
|
1 |
|
def _get_links_dict(self): |
112
|
|
|
"""Return a dictionary with the known links.""" |
113
|
1 |
|
return {'links': {link.id: link.as_dict() for link in |
114
|
|
|
self.links.copy().values()}} |
115
|
|
|
|
116
|
1 |
|
def _get_topology_dict(self): |
117
|
|
|
"""Return a dictionary with the known topology.""" |
118
|
1 |
|
return {'topology': {**self._get_switches_dict(), |
119
|
|
|
**self._get_links_dict()}} |
120
|
|
|
|
121
|
1 |
|
def _get_topology(self): |
122
|
|
|
"""Return an object representing the topology.""" |
123
|
1 |
|
return Topology(self.controller.switches.copy(), self.links.copy()) |
124
|
|
|
|
125
|
1 |
|
def _get_link_from_interface(self, interface): |
126
|
|
|
"""Return the link of the interface, or None if it does not exist.""" |
127
|
1 |
|
for link in list(self.links.values()): |
128
|
1 |
|
if interface in (link.endpoint_a, link.endpoint_b): |
129
|
1 |
|
return link |
130
|
1 |
|
return None |
131
|
|
|
|
132
|
1 |
|
def _load_link(self, link_att): |
133
|
1 |
|
endpoint_a = link_att['endpoint_a']['id'] |
134
|
1 |
|
endpoint_b = link_att['endpoint_b']['id'] |
135
|
1 |
|
link_str = link_att['id'] |
136
|
1 |
|
log.info(f"Loading link: {link_str}") |
137
|
1 |
|
interface_a = self.controller.get_interface_by_id(endpoint_a) |
138
|
1 |
|
interface_b = self.controller.get_interface_by_id(endpoint_b) |
139
|
|
|
|
140
|
1 |
|
error = f"Fail to load endpoints for link {link_str}. " |
141
|
1 |
|
if not interface_a: |
142
|
1 |
|
raise RestoreError(f"{error}, endpoint_a {endpoint_a} not found") |
143
|
1 |
|
if not interface_b: |
144
|
|
|
raise RestoreError(f"{error}, endpoint_b {endpoint_b} not found") |
145
|
|
|
|
146
|
1 |
|
with self._links_lock: |
147
|
1 |
|
link, _ = self._get_link_or_create(interface_a, interface_b) |
148
|
|
|
|
149
|
1 |
|
if link_att['enabled']: |
150
|
1 |
|
link.enable() |
151
|
|
|
else: |
152
|
1 |
|
link.disable() |
153
|
|
|
|
154
|
|
|
# These ones are just runtime active southbound protocol data |
155
|
|
|
# It won't be stored in the future, only kept in the runtime. |
156
|
|
|
# Also network operators can follow logs to track this state changes |
157
|
1 |
|
for key in ( |
158
|
|
|
"last_status_is_active", "last_status_change", "notified_up_at" |
159
|
|
|
): |
160
|
1 |
|
link_att["metadata"].pop(key, None) |
161
|
|
|
|
162
|
1 |
|
link.extend_metadata(link_att["metadata"]) |
163
|
1 |
|
interface_a.update_link(link) |
164
|
1 |
|
interface_b.update_link(link) |
165
|
1 |
|
interface_a.nni = True |
166
|
1 |
|
interface_b.nni = True |
167
|
|
|
|
168
|
1 |
|
def _load_switch(self, switch_id, switch_att): |
169
|
1 |
|
log.info(f'Loading switch dpid: {switch_id}') |
170
|
1 |
|
switch = self.controller.get_switch_or_create(switch_id) |
171
|
1 |
|
if switch_att['enabled']: |
172
|
1 |
|
switch.enable() |
173
|
|
|
else: |
174
|
1 |
|
switch.disable() |
175
|
1 |
|
switch.description['manufacturer'] = switch_att.get('manufacturer', '') |
176
|
1 |
|
switch.description['hardware'] = switch_att.get('hardware', '') |
177
|
1 |
|
switch.description['software'] = switch_att.get('software') |
178
|
1 |
|
switch.description['serial'] = switch_att.get('serial', '') |
179
|
1 |
|
switch.description['data_path'] = switch_att.get('data_path', '') |
180
|
1 |
|
switch.extend_metadata(switch_att["metadata"]) |
181
|
|
|
|
182
|
1 |
|
for iface_id, iface_att in switch_att.get('interfaces', {}).items(): |
183
|
1 |
|
log.info(f'Loading interface iface_id={iface_id}') |
184
|
1 |
|
interface = switch.update_or_create_interface( |
185
|
|
|
port_no=iface_att['port_number'], |
186
|
|
|
name=iface_att['name'], |
187
|
|
|
address=iface_att.get('mac', None), |
188
|
|
|
speed=iface_att.get('speed', None)) |
189
|
1 |
|
if iface_att['enabled']: |
190
|
1 |
|
interface.enable() |
191
|
|
|
else: |
192
|
1 |
|
interface.disable() |
193
|
1 |
|
interface.lldp = iface_att['lldp'] |
194
|
1 |
|
interface.extend_metadata(iface_att["metadata"]) |
195
|
1 |
|
interface.deactivate() |
196
|
1 |
|
name = 'kytos/topology.port.created' |
197
|
1 |
|
event = KytosEvent(name=name, content={ |
198
|
|
|
'switch': switch_id, |
199
|
|
|
'port': interface.port_number, |
200
|
|
|
'port_description': { |
201
|
|
|
'alias': interface.name, |
202
|
|
|
'mac': interface.address, |
203
|
|
|
'state': interface.state |
204
|
|
|
} |
205
|
|
|
}) |
206
|
1 |
|
self.controller.buffers.app.put(event) |
207
|
|
|
|
208
|
1 |
|
intf_ids = [v["id"] for v in switch_att.get("interfaces", {}).values()] |
209
|
1 |
|
intf_details = self.topo_controller.get_interfaces_details(intf_ids) |
210
|
1 |
|
with self._links_lock: |
211
|
1 |
|
self.load_interfaces_tags_values(switch, intf_details) |
212
|
|
|
|
213
|
|
|
# pylint: disable=attribute-defined-outside-init |
214
|
1 |
|
def load_topology(self): |
215
|
|
|
"""Load network topology from DB.""" |
216
|
1 |
|
topology = self.topo_controller.get_topology() |
217
|
1 |
|
switches = topology["topology"]["switches"] |
218
|
1 |
|
links = topology["topology"]["links"] |
219
|
|
|
|
220
|
1 |
|
failed_switches = {} |
221
|
1 |
|
log.debug(f"_load_network_status switches={switches}") |
222
|
1 |
|
for switch_id, switch_att in switches.items(): |
223
|
1 |
|
try: |
224
|
1 |
|
self._load_switch(switch_id, switch_att) |
225
|
|
|
# pylint: disable=broad-except |
226
|
1 |
|
except Exception as err: |
227
|
1 |
|
failed_switches[switch_id] = err |
228
|
1 |
|
log.error(f'Error loading switch: {err}') |
229
|
|
|
|
230
|
1 |
|
failed_links = {} |
231
|
1 |
|
log.debug(f"_load_network_status links={links}") |
232
|
1 |
|
for link_id, link_att in links.items(): |
233
|
1 |
|
try: |
234
|
1 |
|
self._load_link(link_att) |
235
|
|
|
# pylint: disable=broad-except |
236
|
1 |
|
except Exception as err: |
237
|
1 |
|
failed_links[link_id] = err |
238
|
1 |
|
log.error(f'Error loading link {link_id}: {err}') |
239
|
|
|
|
240
|
1 |
|
name = 'kytos/topology.topology_loaded' |
241
|
1 |
|
event = KytosEvent( |
242
|
|
|
name=name, |
243
|
|
|
content={ |
244
|
|
|
'topology': self._get_topology(), |
245
|
|
|
'failed_switches': failed_switches, |
246
|
|
|
'failed_links': failed_links |
247
|
|
|
}) |
248
|
1 |
|
self.controller.buffers.app.put(event) |
249
|
|
|
|
250
|
1 |
|
@rest('v3/') |
251
|
1 |
|
def get_topology(self, _request: Request) -> JSONResponse: |
252
|
|
|
"""Return the latest known topology. |
253
|
|
|
|
254
|
|
|
This topology is updated when there are network events. |
255
|
|
|
""" |
256
|
1 |
|
return JSONResponse(self._get_topology_dict()) |
257
|
|
|
|
258
|
|
|
# Switch related methods |
259
|
1 |
|
@rest('v3/switches') |
260
|
1 |
|
def get_switches(self, _request: Request) -> JSONResponse: |
261
|
|
|
"""Return a json with all the switches in the topology.""" |
262
|
|
|
return JSONResponse(self._get_switches_dict()) |
263
|
|
|
|
264
|
1 |
|
@rest('v3/switches/{dpid}/enable', methods=['POST']) |
265
|
1 |
|
def enable_switch(self, request: Request) -> JSONResponse: |
266
|
|
|
"""Administratively enable a switch in the topology.""" |
267
|
1 |
|
dpid = request.path_params["dpid"] |
268
|
1 |
|
try: |
269
|
1 |
|
switch = self.controller.switches[dpid] |
270
|
1 |
|
self.topo_controller.enable_switch(dpid) |
271
|
1 |
|
switch.enable() |
272
|
1 |
|
except KeyError: |
273
|
1 |
|
raise HTTPException(404, detail="Switch not found") |
274
|
|
|
|
275
|
1 |
|
self.notify_switch_enabled(dpid) |
276
|
1 |
|
self.notify_topology_update() |
277
|
1 |
|
self.notify_switch_links_status(switch, "link enabled") |
278
|
1 |
|
return JSONResponse("Operation successful", status_code=201) |
279
|
|
|
|
280
|
1 |
|
@rest('v3/switches/{dpid}/disable', methods=['POST']) |
281
|
1 |
|
def disable_switch(self, request: Request) -> JSONResponse: |
282
|
|
|
"""Administratively disable a switch in the topology.""" |
283
|
1 |
|
dpid = request.path_params["dpid"] |
284
|
1 |
|
try: |
285
|
1 |
|
switch = self.controller.switches[dpid] |
286
|
1 |
|
self.topo_controller.disable_switch(dpid) |
287
|
1 |
|
switch.disable() |
288
|
1 |
|
except KeyError: |
289
|
1 |
|
raise HTTPException(404, detail="Switch not found") |
290
|
|
|
|
291
|
1 |
|
self.notify_switch_disabled(dpid) |
292
|
1 |
|
self.notify_topology_update() |
293
|
1 |
|
self.notify_switch_links_status(switch, "link disabled") |
294
|
1 |
|
return JSONResponse("Operation successful", status_code=201) |
295
|
|
|
|
296
|
1 |
|
@rest('v3/switches/{dpid}/metadata') |
297
|
1 |
|
def get_switch_metadata(self, request: Request) -> JSONResponse: |
298
|
|
|
"""Get metadata from a switch.""" |
299
|
1 |
|
dpid = request.path_params["dpid"] |
300
|
1 |
|
try: |
301
|
1 |
|
metadata = self.controller.switches[dpid].metadata |
302
|
1 |
|
return JSONResponse({"metadata": metadata}) |
303
|
1 |
|
except KeyError: |
304
|
1 |
|
raise HTTPException(404, detail="Switch not found") |
305
|
|
|
|
306
|
1 |
|
@rest('v3/switches/{dpid}/metadata', methods=['POST']) |
307
|
1 |
|
def add_switch_metadata(self, request: Request) -> JSONResponse: |
308
|
|
|
"""Add metadata to a switch.""" |
309
|
1 |
|
dpid = request.path_params["dpid"] |
310
|
1 |
|
metadata = self._get_metadata(request) |
311
|
1 |
|
try: |
312
|
1 |
|
switch = self.controller.switches[dpid] |
313
|
1 |
|
except KeyError: |
314
|
1 |
|
raise HTTPException(404, detail="Switch not found") |
315
|
|
|
|
316
|
1 |
|
self.topo_controller.add_switch_metadata(dpid, metadata) |
317
|
1 |
|
switch.extend_metadata(metadata) |
318
|
1 |
|
self.notify_metadata_changes(switch, 'added') |
319
|
1 |
|
return JSONResponse("Operation successful", status_code=201) |
320
|
|
|
|
321
|
1 |
|
@rest('v3/switches/{dpid}/metadata/{key}', methods=['DELETE']) |
322
|
1 |
|
def delete_switch_metadata(self, request: Request) -> JSONResponse: |
323
|
|
|
"""Delete metadata from a switch.""" |
324
|
1 |
|
dpid = request.path_params["dpid"] |
325
|
1 |
|
key = request.path_params["key"] |
326
|
1 |
|
try: |
327
|
1 |
|
switch = self.controller.switches[dpid] |
328
|
1 |
|
except KeyError: |
329
|
1 |
|
raise HTTPException(404, detail="Switch not found") |
330
|
|
|
|
331
|
1 |
|
try: |
332
|
1 |
|
_ = switch.metadata[key] |
333
|
|
|
except KeyError: |
334
|
|
|
raise HTTPException(404, "Metadata not found") |
335
|
|
|
|
336
|
1 |
|
self.topo_controller.delete_switch_metadata_key(dpid, key) |
337
|
1 |
|
switch.remove_metadata(key) |
338
|
1 |
|
self.notify_metadata_changes(switch, 'removed') |
339
|
1 |
|
return JSONResponse("Operation successful") |
340
|
|
|
|
341
|
|
|
# Interface related methods |
342
|
1 |
|
@rest('v3/interfaces') |
343
|
1 |
|
def get_interfaces(self, _request: Request) -> JSONResponse: |
344
|
|
|
"""Return a json with all the interfaces in the topology.""" |
345
|
1 |
|
interfaces = {} |
346
|
1 |
|
switches = self._get_switches_dict() |
347
|
1 |
|
for switch in switches['switches'].values(): |
348
|
1 |
|
for interface_id, interface in switch['interfaces'].items(): |
349
|
1 |
|
interfaces[interface_id] = interface |
350
|
|
|
|
351
|
1 |
|
return JSONResponse({'interfaces': interfaces}) |
352
|
|
|
|
353
|
1 |
View Code Duplication |
@rest('v3/interfaces/switch/{dpid}/enable', methods=['POST']) |
|
|
|
|
354
|
1 |
|
@rest('v3/interfaces/{interface_enable_id}/enable', methods=['POST']) |
355
|
1 |
|
def enable_interface(self, request: Request) -> JSONResponse: |
356
|
|
|
"""Administratively enable interfaces in the topology.""" |
357
|
1 |
|
interface_enable_id = request.path_params.get("interface_enable_id") |
358
|
1 |
|
dpid = request.path_params.get("dpid") |
359
|
1 |
|
if dpid is None: |
360
|
1 |
|
dpid = ":".join(interface_enable_id.split(":")[:-1]) |
361
|
1 |
|
try: |
362
|
1 |
|
switch = self.controller.switches[dpid] |
363
|
|
|
except KeyError: |
364
|
|
|
raise HTTPException(404, detail="Switch not found") |
365
|
|
|
|
366
|
1 |
|
if interface_enable_id: |
367
|
1 |
|
interface_number = int(interface_enable_id.split(":")[-1]) |
368
|
|
|
|
369
|
1 |
|
try: |
370
|
1 |
|
interface = switch.interfaces[interface_number] |
371
|
1 |
|
self.topo_controller.enable_interface(interface.id) |
372
|
1 |
|
interface.enable() |
373
|
1 |
|
self.notify_interface_link_status(interface, "link enabled") |
374
|
1 |
|
except KeyError: |
375
|
1 |
|
msg = f"Switch {dpid} interface {interface_number} not found" |
376
|
1 |
|
raise HTTPException(404, detail=msg) |
377
|
|
|
else: |
378
|
1 |
|
for interface in switch.interfaces.copy().values(): |
379
|
1 |
|
interface.enable() |
380
|
1 |
|
self.notify_interface_link_status(interface, "link enabled") |
381
|
1 |
|
self.topo_controller.upsert_switch(switch.id, switch.as_dict()) |
382
|
1 |
|
self.notify_topology_update() |
383
|
1 |
|
return JSONResponse("Operation successful") |
384
|
|
|
|
385
|
1 |
View Code Duplication |
@rest('v3/interfaces/switch/{dpid}/disable', methods=['POST']) |
|
|
|
|
386
|
1 |
|
@rest('v3/interfaces/{interface_disable_id}/disable', methods=['POST']) |
387
|
1 |
|
def disable_interface(self, request: Request) -> JSONResponse: |
388
|
|
|
"""Administratively disable interfaces in the topology.""" |
389
|
1 |
|
interface_disable_id = request.path_params.get("interface_disable_id") |
390
|
1 |
|
dpid = request.path_params.get("dpid") |
391
|
1 |
|
if dpid is None: |
392
|
1 |
|
dpid = ":".join(interface_disable_id.split(":")[:-1]) |
393
|
1 |
|
try: |
394
|
1 |
|
switch = self.controller.switches[dpid] |
395
|
1 |
|
except KeyError: |
396
|
1 |
|
raise HTTPException(404, detail="Switch not found") |
397
|
|
|
|
398
|
1 |
|
if interface_disable_id: |
399
|
1 |
|
interface_number = int(interface_disable_id.split(":")[-1]) |
400
|
|
|
|
401
|
1 |
|
try: |
402
|
1 |
|
interface = switch.interfaces[interface_number] |
403
|
1 |
|
self.topo_controller.disable_interface(interface.id) |
404
|
1 |
|
interface.disable() |
405
|
1 |
|
self.notify_interface_link_status(interface, "link disabled") |
406
|
1 |
|
except KeyError: |
407
|
1 |
|
msg = f"Switch {dpid} interface {interface_number} not found" |
408
|
1 |
|
raise HTTPException(404, detail=msg) |
409
|
|
|
else: |
410
|
1 |
|
for interface in switch.interfaces.copy().values(): |
411
|
1 |
|
interface.disable() |
412
|
1 |
|
self.notify_interface_link_status(interface, "link disabled") |
413
|
1 |
|
self.topo_controller.upsert_switch(switch.id, switch.as_dict()) |
414
|
1 |
|
self.notify_topology_update() |
415
|
1 |
|
return JSONResponse("Operation successful") |
416
|
|
|
|
417
|
1 |
|
@rest('v3/interfaces/{interface_id}/metadata') |
418
|
1 |
|
def get_interface_metadata(self, request: Request) -> JSONResponse: |
419
|
|
|
"""Get metadata from an interface.""" |
420
|
1 |
|
interface_id = request.path_params["interface_id"] |
421
|
1 |
|
switch_id = ":".join(interface_id.split(":")[:-1]) |
422
|
1 |
|
interface_number = int(interface_id.split(":")[-1]) |
423
|
1 |
|
try: |
424
|
1 |
|
switch = self.controller.switches[switch_id] |
425
|
1 |
|
except KeyError: |
426
|
1 |
|
raise HTTPException(404, detail="Switch not found") |
427
|
|
|
|
428
|
1 |
|
try: |
429
|
1 |
|
interface = switch.interfaces[interface_number] |
430
|
1 |
|
except KeyError: |
431
|
1 |
|
raise HTTPException(404, detail="Interface not found") |
432
|
|
|
|
433
|
1 |
|
return JSONResponse({"metadata": interface.metadata}) |
434
|
|
|
|
435
|
1 |
|
@rest('v3/interfaces/{interface_id}/metadata', methods=['POST']) |
436
|
1 |
|
def add_interface_metadata(self, request: Request) -> JSONResponse: |
437
|
|
|
"""Add metadata to an interface.""" |
438
|
1 |
|
interface_id = request.path_params["interface_id"] |
439
|
1 |
|
metadata = self._get_metadata(request) |
440
|
1 |
|
switch_id = ":".join(interface_id.split(":")[:-1]) |
441
|
1 |
|
interface_number = int(interface_id.split(":")[-1]) |
442
|
1 |
|
try: |
443
|
1 |
|
switch = self.controller.switches[switch_id] |
444
|
1 |
|
except KeyError: |
445
|
1 |
|
raise HTTPException(404, detail="Switch not found") |
446
|
|
|
|
447
|
1 |
|
try: |
448
|
1 |
|
interface = switch.interfaces[interface_number] |
449
|
1 |
|
self.topo_controller.add_interface_metadata(interface.id, metadata) |
450
|
1 |
|
except KeyError: |
451
|
1 |
|
raise HTTPException(404, detail="Interface not found") |
452
|
|
|
|
453
|
1 |
|
interface.extend_metadata(metadata) |
454
|
1 |
|
self.notify_metadata_changes(interface, 'added') |
455
|
1 |
|
return JSONResponse("Operation successful", status_code=201) |
456
|
|
|
|
457
|
1 |
|
@rest('v3/interfaces/{interface_id}/metadata/{key}', methods=['DELETE']) |
458
|
1 |
|
def delete_interface_metadata(self, request: Request) -> JSONResponse: |
459
|
|
|
"""Delete metadata from an interface.""" |
460
|
1 |
|
interface_id = request.path_params["interface_id"] |
461
|
1 |
|
key = request.path_params["key"] |
462
|
1 |
|
switch_id = ":".join(interface_id.split(":")[:-1]) |
463
|
1 |
|
try: |
464
|
1 |
|
interface_number = int(interface_id.split(":")[-1]) |
465
|
|
|
except ValueError: |
466
|
|
|
detail = f"Invalid interface_id {interface_id}" |
467
|
|
|
raise HTTPException(400, detail=detail) |
468
|
|
|
|
469
|
1 |
|
try: |
470
|
1 |
|
switch = self.controller.switches[switch_id] |
471
|
1 |
|
except KeyError: |
472
|
1 |
|
raise HTTPException(404, detail="Switch not found") |
473
|
|
|
|
474
|
1 |
|
try: |
475
|
1 |
|
interface = switch.interfaces[interface_number] |
476
|
1 |
|
except KeyError: |
477
|
1 |
|
raise HTTPException(404, detail="Interface not found") |
478
|
|
|
|
479
|
1 |
|
try: |
480
|
1 |
|
_ = interface.metadata[key] |
481
|
1 |
|
except KeyError: |
482
|
1 |
|
raise HTTPException(404, detail="Metadata not found") |
483
|
|
|
|
484
|
1 |
|
self.topo_controller.delete_interface_metadata_key(interface.id, key) |
485
|
1 |
|
interface.remove_metadata(key) |
486
|
1 |
|
self.notify_metadata_changes(interface, 'removed') |
487
|
1 |
|
return JSONResponse("Operation successful") |
488
|
|
|
|
489
|
1 |
|
@rest('v3/interfaces/{interface_id}/tag_ranges', methods=['POST']) |
490
|
1 |
|
@validate_openapi(spec) |
491
|
1 |
|
def set_tag_range(self, request: Request) -> JSONResponse: |
492
|
|
|
"""Set tag range""" |
493
|
1 |
|
content_type_json_or_415(request) |
494
|
1 |
|
content = get_json_or_400(request, self.controller.loop) |
495
|
1 |
|
tag_type = content.get("tag_type") |
496
|
1 |
|
try: |
497
|
1 |
|
ranges = get_tag_ranges(content["tag_ranges"]) |
498
|
|
|
except KytosInvalidTagRanges as err: |
499
|
|
|
raise HTTPException(400, detail=str(err)) |
500
|
1 |
|
interface_id = request.path_params["interface_id"] |
501
|
1 |
|
interface = self.controller.get_interface_by_id(interface_id) |
502
|
1 |
|
if not interface: |
503
|
1 |
|
raise HTTPException(404, detail="Interface not found") |
504
|
1 |
|
try: |
505
|
1 |
|
interface.set_tag_ranges(ranges, tag_type) |
506
|
1 |
|
self.handle_on_interface_tags(interface) |
507
|
1 |
|
except KytosTagError as err: |
508
|
1 |
|
raise HTTPException(400, detail=str(err)) |
509
|
1 |
|
return JSONResponse("Operation Successful", status_code=200) |
510
|
|
|
|
511
|
1 |
|
@rest('v3/interfaces/{interface_id}/tag_ranges', methods=['DELETE']) |
512
|
1 |
|
@validate_openapi(spec) |
513
|
1 |
|
def delete_tag_range(self, request: Request) -> JSONResponse: |
514
|
|
|
"""Set tag_range from tag_type to default value [1, 4095]""" |
515
|
1 |
|
interface_id = request.path_params["interface_id"] |
516
|
1 |
|
params = request.query_params |
517
|
1 |
|
tag_type = params.get("tag_type", 'vlan') |
518
|
1 |
|
interface = self.controller.get_interface_by_id(interface_id) |
519
|
1 |
|
if not interface: |
520
|
1 |
|
raise HTTPException(404, detail="Interface not found") |
521
|
1 |
|
try: |
522
|
1 |
|
interface.remove_tag_ranges(tag_type) |
523
|
1 |
|
self.handle_on_interface_tags(interface) |
524
|
1 |
|
except KytosTagError as err: |
525
|
1 |
|
raise HTTPException(400, detail=str(err)) |
526
|
1 |
|
return JSONResponse("Operation Successful", status_code=200) |
527
|
|
|
|
528
|
1 |
|
@rest('v3/interfaces/{interface_id}/special_tags', methods=['POST']) |
529
|
1 |
|
@validate_openapi(spec) |
530
|
1 |
|
def set_special_tags(self, request: Request) -> JSONResponse: |
531
|
|
|
"""Set special_tags""" |
532
|
1 |
|
content_type_json_or_415(request) |
533
|
1 |
|
content = get_json_or_400(request, self.controller.loop) |
534
|
1 |
|
tag_type = content.get("tag_type") |
535
|
1 |
|
special_tags = content["special_tags"] |
536
|
1 |
|
interface_id = request.path_params["interface_id"] |
537
|
1 |
|
interface = self.controller.get_interface_by_id(interface_id) |
538
|
1 |
|
if not interface: |
539
|
1 |
|
raise HTTPException(404, detail="Interface not found") |
540
|
1 |
|
try: |
541
|
1 |
|
interface.set_special_tags(tag_type, special_tags) |
542
|
1 |
|
self.handle_on_interface_tags(interface) |
543
|
1 |
|
except KytosTagError as err: |
544
|
1 |
|
raise HTTPException(400, detail=str(err)) |
545
|
1 |
|
return JSONResponse("Operation Successful", status_code=200) |
546
|
|
|
|
547
|
1 |
|
@rest('v3/interfaces/tag_ranges', methods=['GET']) |
548
|
1 |
|
@validate_openapi(spec) |
549
|
1 |
|
def get_all_tag_ranges(self, _: Request) -> JSONResponse: |
550
|
|
|
"""Get all tag_ranges, available_tags, special_tags |
551
|
|
|
and special_available_tags from interfaces""" |
552
|
1 |
|
result = {} |
553
|
1 |
|
for switch in self.controller.switches.copy().values(): |
554
|
1 |
|
for interface in switch.interfaces.copy().values(): |
555
|
1 |
|
result[interface.id] = { |
556
|
|
|
"available_tags": interface.available_tags, |
557
|
|
|
"tag_ranges": interface.tag_ranges, |
558
|
|
|
"special_tags": interface.special_tags, |
559
|
|
|
"special_available_tags": interface.special_available_tags |
560
|
|
|
} |
561
|
1 |
|
return JSONResponse(result, status_code=200) |
562
|
|
|
|
563
|
1 |
|
@rest('v3/interfaces/{interface_id}/tag_ranges', methods=['GET']) |
564
|
1 |
|
@validate_openapi(spec) |
565
|
1 |
|
def get_tag_ranges_by_intf(self, request: Request) -> JSONResponse: |
566
|
|
|
"""Get tag_ranges, available_tags, special_tags |
567
|
|
|
and special_available_tags from an interface""" |
568
|
1 |
|
interface_id = request.path_params["interface_id"] |
569
|
1 |
|
interface = self.controller.get_interface_by_id(interface_id) |
570
|
1 |
|
if not interface: |
571
|
1 |
|
raise HTTPException(404, detail="Interface not found") |
572
|
1 |
|
result = { |
573
|
|
|
interface_id: { |
574
|
|
|
"available_tags": interface.available_tags, |
575
|
|
|
"tag_ranges": interface.tag_ranges, |
576
|
|
|
"special_tags": interface.special_tags, |
577
|
|
|
"special_available_tags": interface.special_available_tags |
578
|
|
|
} |
579
|
|
|
} |
580
|
1 |
|
return JSONResponse(result, status_code=200) |
581
|
|
|
|
582
|
|
|
# Link related methods |
583
|
1 |
|
@rest('v3/links') |
584
|
1 |
|
def get_links(self, _request: Request) -> JSONResponse: |
585
|
|
|
"""Return a json with all the links in the topology. |
586
|
|
|
|
587
|
|
|
Links are connections between interfaces. |
588
|
|
|
""" |
589
|
|
|
return JSONResponse(self._get_links_dict()) |
590
|
|
|
|
591
|
1 |
|
@rest('v3/links/{link_id}/enable', methods=['POST']) |
592
|
1 |
|
def enable_link(self, request: Request) -> JSONResponse: |
593
|
|
|
"""Administratively enable a link in the topology.""" |
594
|
1 |
|
link_id = request.path_params["link_id"] |
595
|
1 |
|
try: |
596
|
1 |
|
with self._links_lock: |
597
|
1 |
|
link = self.links[link_id] |
598
|
1 |
|
self.topo_controller.enable_link(link_id) |
599
|
1 |
|
link.enable() |
600
|
1 |
|
except KeyError: |
601
|
1 |
|
raise HTTPException(404, detail="Link not found") |
602
|
1 |
|
self.notify_link_status_change( |
603
|
|
|
self.links[link_id], |
604
|
|
|
reason='link enabled' |
605
|
|
|
) |
606
|
1 |
|
self.notify_topology_update() |
607
|
1 |
|
return JSONResponse("Operation successful", status_code=201) |
608
|
|
|
|
609
|
1 |
|
@rest('v3/links/{link_id}/disable', methods=['POST']) |
610
|
1 |
|
def disable_link(self, request: Request) -> JSONResponse: |
611
|
|
|
"""Administratively disable a link in the topology.""" |
612
|
1 |
|
link_id = request.path_params["link_id"] |
613
|
1 |
|
try: |
614
|
1 |
|
with self._links_lock: |
615
|
1 |
|
link = self.links[link_id] |
616
|
1 |
|
self.topo_controller.disable_link(link_id) |
617
|
1 |
|
link.disable() |
618
|
1 |
|
except KeyError: |
619
|
1 |
|
raise HTTPException(404, detail="Link not found") |
620
|
1 |
|
self.notify_link_status_change( |
621
|
|
|
self.links[link_id], |
622
|
|
|
reason='link disabled' |
623
|
|
|
) |
624
|
1 |
|
self.notify_topology_update() |
625
|
1 |
|
return JSONResponse("Operation successful", status_code=201) |
626
|
|
|
|
627
|
1 |
|
@rest('v3/links/{link_id}/metadata') |
628
|
1 |
|
def get_link_metadata(self, request: Request) -> JSONResponse: |
629
|
|
|
"""Get metadata from a link.""" |
630
|
1 |
|
link_id = request.path_params["link_id"] |
631
|
1 |
|
try: |
632
|
1 |
|
return JSONResponse({"metadata": self.links[link_id].metadata}) |
633
|
1 |
|
except KeyError: |
634
|
1 |
|
raise HTTPException(404, detail="Link not found") |
635
|
|
|
|
636
|
1 |
|
@rest('v3/links/{link_id}/metadata', methods=['POST']) |
637
|
1 |
|
def add_link_metadata(self, request: Request) -> JSONResponse: |
638
|
|
|
"""Add metadata to a link.""" |
639
|
1 |
|
link_id = request.path_params["link_id"] |
640
|
1 |
|
metadata = self._get_metadata(request) |
641
|
1 |
|
try: |
642
|
1 |
|
link = self.links[link_id] |
643
|
1 |
|
except KeyError: |
644
|
1 |
|
raise HTTPException(404, detail="Link not found") |
645
|
|
|
|
646
|
1 |
|
self.topo_controller.add_link_metadata(link_id, metadata) |
647
|
1 |
|
link.extend_metadata(metadata) |
648
|
1 |
|
self.notify_metadata_changes(link, 'added') |
649
|
1 |
|
self.notify_topology_update() |
650
|
1 |
|
return JSONResponse("Operation successful", status_code=201) |
651
|
|
|
|
652
|
1 |
|
@rest('v3/links/{link_id}/metadata/{key}', methods=['DELETE']) |
653
|
1 |
|
def delete_link_metadata(self, request: Request) -> JSONResponse: |
654
|
|
|
"""Delete metadata from a link.""" |
655
|
1 |
|
link_id = request.path_params["link_id"] |
656
|
1 |
|
key = request.path_params["key"] |
657
|
1 |
|
try: |
658
|
1 |
|
link = self.links[link_id] |
659
|
1 |
|
except KeyError: |
660
|
1 |
|
raise HTTPException(404, detail="Link not found") |
661
|
|
|
|
662
|
1 |
|
try: |
663
|
1 |
|
_ = link.metadata[key] |
664
|
1 |
|
except KeyError: |
665
|
1 |
|
raise HTTPException(404, detail="Metadata not found") |
666
|
|
|
|
667
|
1 |
|
self.topo_controller.delete_link_metadata_key(link.id, key) |
668
|
1 |
|
link.remove_metadata(key) |
669
|
1 |
|
self.notify_metadata_changes(link, 'removed') |
670
|
1 |
|
self.notify_topology_update() |
671
|
1 |
|
return JSONResponse("Operation successful") |
672
|
|
|
|
673
|
1 |
|
@listen_to("kytos/.*.liveness.(up|down)") |
674
|
1 |
|
def on_link_liveness_status(self, event) -> None: |
675
|
|
|
"""Handle link liveness up|down status event.""" |
676
|
|
|
link = Link(event.content["interface_a"], event.content["interface_b"]) |
677
|
|
|
try: |
678
|
|
|
link = self.links[link.id] |
679
|
|
|
except KeyError: |
680
|
|
|
log.error(f"Link id {link.id} not found, {link}") |
681
|
|
|
return |
682
|
|
|
liveness_status = event.name.split(".")[-1] |
683
|
|
|
self.handle_link_liveness_status(self.links[link.id], liveness_status) |
684
|
|
|
|
685
|
1 |
|
def handle_link_liveness_status(self, link, liveness_status) -> None: |
686
|
|
|
"""Handle link liveness.""" |
687
|
1 |
|
metadata = {"liveness_status": liveness_status} |
688
|
1 |
|
log.info(f"Link liveness {liveness_status}: {link}") |
689
|
1 |
|
self.topo_controller.add_link_metadata(link.id, metadata) |
690
|
1 |
|
link.extend_metadata(metadata) |
691
|
1 |
|
self.notify_topology_update() |
692
|
1 |
|
if link.status == EntityStatus.UP and liveness_status == "up": |
693
|
1 |
|
self.notify_link_status_change(link, reason="liveness_up") |
694
|
1 |
|
if link.status == EntityStatus.DOWN and liveness_status == "down": |
695
|
1 |
|
self.notify_link_status_change(link, reason="liveness_down") |
696
|
|
|
|
697
|
1 |
|
@listen_to("kytos/.*.liveness.disabled") |
698
|
1 |
|
def on_link_liveness_disabled(self, event) -> None: |
699
|
|
|
"""Handle link liveness disabled event.""" |
700
|
|
|
interfaces = event.content["interfaces"] |
701
|
|
|
self.handle_link_liveness_disabled(interfaces) |
702
|
|
|
|
703
|
1 |
|
def get_links_from_interfaces(self, interfaces) -> dict: |
704
|
|
|
"""Get links from interfaces.""" |
705
|
1 |
|
links_found = {} |
706
|
1 |
|
with self._links_lock: |
707
|
1 |
|
for interface in interfaces: |
708
|
1 |
|
for link in self.links.values(): |
709
|
1 |
|
if any(( |
710
|
|
|
interface.id == link.endpoint_a.id, |
711
|
|
|
interface.id == link.endpoint_b.id, |
712
|
|
|
)): |
713
|
1 |
|
links_found[link.id] = link |
714
|
1 |
|
return links_found |
715
|
|
|
|
716
|
1 |
|
def handle_link_liveness_disabled(self, interfaces) -> None: |
717
|
|
|
"""Handle link liveness disabled.""" |
718
|
1 |
|
log.info(f"Link liveness disabled interfaces: {interfaces}") |
719
|
|
|
|
720
|
1 |
|
key = "liveness_status" |
721
|
1 |
|
links = self.get_links_from_interfaces(interfaces) |
722
|
1 |
|
for link in links.values(): |
723
|
1 |
|
link.remove_metadata(key) |
724
|
1 |
|
link_ids = list(links.keys()) |
725
|
1 |
|
self.topo_controller.bulk_delete_link_metadata_key(link_ids, key) |
726
|
1 |
|
self.notify_topology_update() |
727
|
1 |
|
for link in links.values(): |
728
|
1 |
|
self.notify_link_status_change(link, reason="liveness_disabled") |
729
|
|
|
|
730
|
1 |
|
@listen_to("kytos/core.interface_tags") |
731
|
1 |
|
def on_interface_tags(self, event): |
732
|
|
|
"""Handle on_interface_tags.""" |
733
|
|
|
interface = event.content['interface'] |
734
|
|
|
with self._intfs_lock[interface.id]: |
735
|
|
|
if ( |
736
|
|
|
interface.id in self._intfs_tags_updated_at |
737
|
|
|
and self._intfs_tags_updated_at[interface.id] > event.timestamp |
738
|
|
|
): |
739
|
|
|
return |
740
|
|
|
self._intfs_tags_updated_at[interface.id] = event.timestamp |
741
|
|
|
self.handle_on_interface_tags(interface) |
742
|
|
|
|
743
|
1 |
|
def handle_on_interface_tags(self, interface): |
744
|
|
|
"""Update interface details""" |
745
|
1 |
|
intf_id = interface.id |
746
|
1 |
|
self.topo_controller.upsert_interface_details( |
747
|
|
|
intf_id, interface.available_tags, interface.tag_ranges, |
748
|
|
|
interface.special_available_tags, |
749
|
|
|
interface.special_tags |
750
|
|
|
) |
751
|
|
|
|
752
|
1 |
|
@listen_to('.*.switch.(new|reconnected)') |
753
|
1 |
|
def on_new_switch(self, event): |
754
|
|
|
"""Create a new Device on the Topology. |
755
|
|
|
|
756
|
|
|
Handle the event of a new created switch and update the topology with |
757
|
|
|
this new device. Also notify if the switch is enabled. |
758
|
|
|
""" |
759
|
|
|
self.handle_new_switch(event) |
760
|
|
|
|
761
|
1 |
|
def handle_new_switch(self, event): |
762
|
|
|
"""Create a new Device on the Topology.""" |
763
|
1 |
|
switch = event.content['switch'] |
764
|
1 |
|
switch.activate() |
765
|
1 |
|
self.topo_controller.upsert_switch(switch.id, switch.as_dict()) |
766
|
1 |
|
log.debug('Switch %s added to the Topology.', switch.id) |
767
|
1 |
|
self.notify_topology_update() |
768
|
1 |
|
if switch.is_enabled(): |
769
|
1 |
|
self.notify_switch_enabled(switch.id) |
770
|
|
|
|
771
|
1 |
|
@listen_to('.*.connection.lost') |
772
|
1 |
|
def on_connection_lost(self, event): |
773
|
|
|
"""Remove a Device from the topology. |
774
|
|
|
|
775
|
|
|
Remove the disconnected Device and every link that has one of its |
776
|
|
|
interfaces. |
777
|
|
|
""" |
778
|
|
|
self.handle_connection_lost(event) |
779
|
|
|
|
780
|
1 |
|
def handle_connection_lost(self, event): |
781
|
|
|
"""Remove a Device from the topology.""" |
782
|
1 |
|
switch = event.content['source'].switch |
783
|
1 |
|
if switch: |
784
|
1 |
|
switch.deactivate() |
785
|
1 |
|
log.debug('Switch %s removed from the Topology.', switch.id) |
786
|
1 |
|
self.notify_topology_update() |
787
|
|
|
|
788
|
1 |
|
def handle_interfaces_created(self, event): |
789
|
|
|
"""Update the topology based on the interfaces created.""" |
790
|
1 |
|
interfaces = event.content["interfaces"] |
791
|
1 |
|
if not interfaces: |
792
|
|
|
return |
793
|
1 |
|
switch = interfaces[0].switch |
794
|
1 |
|
self.topo_controller.upsert_switch(switch.id, switch.as_dict()) |
795
|
1 |
|
name = "kytos/topology.switch.interface.created" |
796
|
1 |
|
for interface in interfaces: |
797
|
1 |
|
event = KytosEvent(name=name, content={'interface': interface}) |
798
|
1 |
|
self.controller.buffers.app.put(event) |
799
|
|
|
|
800
|
1 |
|
def handle_interface_created(self, event): |
801
|
|
|
"""Update the topology based on an interface created event. |
802
|
|
|
|
803
|
|
|
It's handled as a link_up in case a switch send a |
804
|
|
|
created event again and it can be belong to a link. |
805
|
|
|
""" |
806
|
1 |
|
interface = event.content['interface'] |
807
|
1 |
|
if not interface.is_active(): |
808
|
1 |
|
return |
809
|
1 |
|
self.handle_interface_link_up(interface, event) |
810
|
|
|
|
811
|
1 |
|
@listen_to('.*.topology.switch.interface.created') |
812
|
1 |
|
def on_interface_created(self, event): |
813
|
|
|
"""Handle individual interface create event. |
814
|
|
|
|
815
|
|
|
It's handled as a link_up in case a switch send a |
816
|
|
|
created event it can belong to an existign link. |
817
|
|
|
""" |
818
|
|
|
self.handle_interface_created(event) |
819
|
|
|
|
820
|
1 |
|
@listen_to('.*.switch.interfaces.created') |
821
|
1 |
|
def on_interfaces_created(self, event): |
822
|
|
|
"""Update the topology based on a list of created interfaces.""" |
823
|
|
|
self.handle_interfaces_created(event) |
824
|
|
|
|
825
|
1 |
|
def handle_interface_down(self, event): |
826
|
|
|
"""Update the topology based on a Port Modify event. |
827
|
|
|
|
828
|
|
|
The event notifies that an interface was changed to 'down'. |
829
|
|
|
""" |
830
|
1 |
|
interface = event.content['interface'] |
831
|
1 |
|
with self._intfs_lock[interface.id]: |
832
|
1 |
|
if ( |
833
|
|
|
interface.id in self._intfs_updated_at |
834
|
|
|
and self._intfs_updated_at[interface.id] > event.timestamp |
835
|
|
|
): |
836
|
|
|
return |
837
|
1 |
|
self._intfs_updated_at[interface.id] = event.timestamp |
838
|
1 |
|
interface.deactivate() |
839
|
1 |
|
self.handle_interface_link_down(interface, event) |
840
|
|
|
|
841
|
1 |
|
@listen_to('.*.switch.interface.deleted') |
842
|
1 |
|
def on_interface_deleted(self, event): |
843
|
|
|
"""Update the topology based on a Port Delete event.""" |
844
|
|
|
self.handle_interface_deleted(event) |
845
|
|
|
|
846
|
1 |
|
def handle_interface_deleted(self, event): |
847
|
|
|
"""Update the topology based on a Port Delete event.""" |
848
|
1 |
|
self.handle_interface_down(event) |
849
|
|
|
|
850
|
1 |
|
@listen_to('.*.switch.interface.link_up') |
851
|
1 |
|
def on_interface_link_up(self, event): |
852
|
|
|
"""Update the topology based on a Port Modify event. |
853
|
|
|
|
854
|
|
|
The event notifies that an interface's link was changed to 'up'. |
855
|
|
|
""" |
856
|
|
|
interface = event.content['interface'] |
857
|
|
|
self.handle_interface_link_up(interface, event) |
858
|
|
|
|
859
|
1 |
|
def handle_interface_link_up(self, interface, event): |
860
|
|
|
"""Update the topology based on a Port Modify event.""" |
861
|
1 |
|
with self._intfs_lock[interface.id]: |
862
|
1 |
|
if ( |
863
|
|
|
interface.id in self._intfs_updated_at |
864
|
|
|
and self._intfs_updated_at[interface.id] > event.timestamp |
865
|
|
|
): |
866
|
1 |
|
return |
867
|
1 |
|
self._intfs_updated_at[interface.id] = event.timestamp |
868
|
1 |
|
self.handle_link_up(interface) |
869
|
|
|
|
870
|
1 |
|
def link_status_hook_link_up_timer(self, link) -> Optional[EntityStatus]: |
871
|
|
|
"""Link status hook link up timer.""" |
872
|
1 |
|
tnow = time.time() |
873
|
1 |
|
if ( |
874
|
|
|
link.is_active() |
875
|
|
|
and link.is_enabled() |
876
|
|
|
and "last_status_change" in link.metadata |
877
|
|
|
and tnow - link.metadata['last_status_change'] < self.link_up_timer |
878
|
|
|
): |
879
|
1 |
|
return EntityStatus.DOWN |
880
|
1 |
|
return None |
881
|
|
|
|
882
|
1 |
|
def notify_link_up_if_status(self, link, reason="link up") -> None: |
883
|
|
|
"""Tries to notify link up and topology changes based on its status |
884
|
|
|
|
885
|
|
|
Currently, it needs to wait up to a timer.""" |
886
|
1 |
|
time.sleep(self.link_up_timer) |
887
|
1 |
|
if link.status != EntityStatus.UP: |
888
|
|
|
return |
889
|
1 |
|
with self._links_notify_lock[link.id]: |
890
|
1 |
|
notified_at = link.get_metadata("notified_up_at") |
891
|
1 |
|
if ( |
892
|
|
|
notified_at |
893
|
|
|
and (now() - notified_at.replace(tzinfo=timezone.utc)).seconds |
894
|
|
|
< self.link_up_timer |
895
|
|
|
): |
896
|
1 |
|
return |
897
|
1 |
|
key, notified_at = "notified_up_at", now() |
898
|
1 |
|
link.update_metadata(key, now()) |
899
|
1 |
|
self.notify_topology_update() |
900
|
1 |
|
self.notify_link_status_change(link, reason) |
901
|
|
|
|
902
|
1 |
|
def handle_link_up(self, interface): |
903
|
|
|
"""Handle link up for an interface.""" |
904
|
1 |
|
with self._links_lock: |
905
|
1 |
|
link = self._get_link_from_interface(interface) |
906
|
1 |
|
if not link: |
907
|
|
|
self.notify_topology_update() |
908
|
|
|
return |
909
|
1 |
|
other_interface = ( |
910
|
|
|
link.endpoint_b if link.endpoint_a == interface |
911
|
|
|
else link.endpoint_a |
912
|
|
|
) |
913
|
1 |
|
if other_interface.is_active() is False: |
914
|
1 |
|
self.notify_topology_update() |
915
|
1 |
|
return |
916
|
1 |
|
metadata = { |
917
|
|
|
'last_status_change': time.time(), |
918
|
|
|
'last_status_is_active': True |
919
|
|
|
} |
920
|
1 |
|
link.extend_metadata(metadata) |
921
|
1 |
|
link.activate() |
922
|
1 |
|
self.notify_topology_update() |
923
|
1 |
|
self.notify_link_up_if_status(link, "link up") |
924
|
|
|
|
925
|
1 |
|
@listen_to('.*.switch.interface.link_down') |
926
|
1 |
|
def on_interface_link_down(self, event): |
927
|
|
|
"""Update the topology based on a Port Modify event. |
928
|
|
|
|
929
|
|
|
The event notifies that an interface's link was changed to 'down'. |
930
|
|
|
""" |
931
|
|
|
interface = event.content['interface'] |
932
|
|
|
self.handle_interface_link_down(interface, event) |
933
|
|
|
|
934
|
1 |
|
def handle_interface_link_down(self, interface, event): |
935
|
|
|
"""Update the topology based on an interface.""" |
936
|
1 |
|
with self._intfs_lock[interface.id]: |
937
|
1 |
|
if ( |
938
|
|
|
interface.id in self._intfs_updated_at |
939
|
|
|
and self._intfs_updated_at[interface.id] > event.timestamp |
940
|
|
|
): |
941
|
1 |
|
return |
942
|
1 |
|
self._intfs_updated_at[interface.id] = event.timestamp |
943
|
1 |
|
self.handle_link_down(interface) |
944
|
|
|
|
945
|
1 |
|
def handle_link_down(self, interface): |
946
|
|
|
"""Notify a link is down.""" |
947
|
1 |
|
with self._links_lock: |
948
|
1 |
|
link = self._get_link_from_interface(interface) |
949
|
1 |
|
if not link or not link.get_metadata("last_status_is_active"): |
950
|
1 |
|
self.notify_topology_update() |
951
|
1 |
|
return |
952
|
1 |
|
link.deactivate() |
953
|
1 |
|
metadata = { |
954
|
|
|
"last_status_change": time.time(), |
955
|
|
|
"last_status_is_active": False, |
956
|
|
|
} |
957
|
1 |
|
link.extend_metadata(metadata) |
958
|
1 |
|
self.notify_link_status_change(link, reason="link down") |
959
|
1 |
|
self.notify_topology_update() |
960
|
|
|
|
961
|
1 |
|
@listen_to('.*.interface.is.nni') |
962
|
1 |
|
def on_add_links(self, event): |
963
|
|
|
"""Update the topology with links related to the NNI interfaces.""" |
964
|
|
|
self.add_links(event) |
965
|
|
|
|
966
|
1 |
|
def add_links(self, event): |
967
|
|
|
"""Update the topology with links related to the NNI interfaces.""" |
968
|
1 |
|
interface_a = event.content['interface_a'] |
969
|
1 |
|
interface_b = event.content['interface_b'] |
970
|
|
|
|
971
|
1 |
|
try: |
972
|
1 |
|
with self._links_lock: |
973
|
1 |
|
link, created = self._get_link_or_create(interface_a, |
974
|
|
|
interface_b) |
975
|
1 |
|
interface_a.update_link(link) |
976
|
1 |
|
interface_b.update_link(link) |
977
|
|
|
|
978
|
1 |
|
link.endpoint_a = interface_a |
979
|
1 |
|
link.endpoint_b = interface_b |
980
|
|
|
|
981
|
1 |
|
interface_a.nni = True |
982
|
1 |
|
interface_b.nni = True |
983
|
|
|
|
984
|
|
|
except KytosLinkCreationError as err: |
985
|
|
|
log.error(f'Error creating link: {err}.') |
986
|
|
|
return |
987
|
|
|
|
988
|
1 |
|
if not created: |
989
|
|
|
return |
990
|
|
|
|
991
|
1 |
|
self.notify_topology_update() |
992
|
1 |
|
if not link.is_active(): |
993
|
|
|
return |
994
|
|
|
|
995
|
1 |
|
metadata = { |
996
|
|
|
'last_status_change': time.time(), |
997
|
|
|
'last_status_is_active': True |
998
|
|
|
} |
999
|
1 |
|
link.extend_metadata(metadata) |
1000
|
1 |
|
self.topo_controller.upsert_link(link.id, link.as_dict()) |
1001
|
1 |
|
self.notify_link_up_if_status(link, "link up") |
1002
|
|
|
|
1003
|
1 |
|
@listen_to('.*.of_lldp.network_status.updated') |
1004
|
1 |
|
def on_lldp_status_updated(self, event): |
1005
|
|
|
"""Handle of_lldp.network_status.updated from of_lldp.""" |
1006
|
|
|
self.handle_lldp_status_updated(event) |
1007
|
|
|
|
1008
|
1 |
|
@listen_to(".*.topo_controller.upsert_switch") |
1009
|
1 |
|
def on_topo_controller_upsert_switch(self, event) -> None: |
1010
|
|
|
"""Listen to topo_controller_upsert_switch.""" |
1011
|
|
|
self.handle_topo_controller_upsert_switch(event.content["switch"]) |
1012
|
|
|
|
1013
|
1 |
|
def handle_topo_controller_upsert_switch(self, switch) -> Optional[dict]: |
1014
|
|
|
"""Handle topo_controller_upsert_switch.""" |
1015
|
1 |
|
return self.topo_controller.upsert_switch(switch.id, switch.as_dict()) |
1016
|
|
|
|
1017
|
1 |
|
def handle_lldp_status_updated(self, event) -> None: |
1018
|
|
|
"""Handle .*.network_status.updated events from of_lldp.""" |
1019
|
1 |
|
content = event.content |
1020
|
1 |
|
interface_ids = content["interface_ids"] |
1021
|
1 |
|
switches = set() |
1022
|
1 |
|
for interface_id in interface_ids: |
1023
|
1 |
|
dpid = ":".join(interface_id.split(":")[:-1]) |
1024
|
1 |
|
switch = self.controller.get_switch_by_dpid(dpid) |
1025
|
1 |
|
if switch: |
1026
|
1 |
|
switches.add(switch) |
1027
|
|
|
|
1028
|
1 |
|
name = "kytos/topology.topo_controller.upsert_switch" |
1029
|
1 |
|
for switch in switches: |
1030
|
1 |
|
event = KytosEvent(name=name, content={"switch": switch}) |
1031
|
1 |
|
self.controller.buffers.app.put(event) |
1032
|
|
|
|
1033
|
1 |
|
def notify_switch_enabled(self, dpid): |
1034
|
|
|
"""Send an event to notify that a switch is enabled.""" |
1035
|
1 |
|
name = 'kytos/topology.switch.enabled' |
1036
|
1 |
|
event = KytosEvent(name=name, content={'dpid': dpid}) |
1037
|
1 |
|
self.controller.buffers.app.put(event) |
1038
|
|
|
|
1039
|
1 |
|
def notify_switch_links_status(self, switch, reason): |
1040
|
|
|
"""Send an event to notify the status of a link in a switch""" |
1041
|
1 |
|
with self._links_lock: |
1042
|
1 |
|
for link in self.links.values(): |
1043
|
1 |
|
if switch in (link.endpoint_a.switch, link.endpoint_b.switch): |
1044
|
1 |
|
if reason == "link enabled": |
1045
|
1 |
|
name = 'kytos/topology.notify_link_up_if_status' |
1046
|
1 |
|
content = {'reason': reason, "link": link} |
1047
|
1 |
|
event = KytosEvent(name=name, content=content) |
1048
|
1 |
|
self.controller.buffers.app.put(event) |
1049
|
|
|
else: |
1050
|
1 |
|
self.notify_link_status_change(link, reason) |
1051
|
|
|
|
1052
|
1 |
|
def notify_switch_disabled(self, dpid): |
1053
|
|
|
"""Send an event to notify that a switch is disabled.""" |
1054
|
1 |
|
name = 'kytos/topology.switch.disabled' |
1055
|
1 |
|
event = KytosEvent(name=name, content={'dpid': dpid}) |
1056
|
1 |
|
self.controller.buffers.app.put(event) |
1057
|
|
|
|
1058
|
1 |
|
def notify_topology_update(self): |
1059
|
|
|
"""Send an event to notify about updates on the topology.""" |
1060
|
1 |
|
name = 'kytos/topology.updated' |
1061
|
1 |
|
event = KytosEvent(name=name, content={'topology': |
1062
|
|
|
self._get_topology()}) |
1063
|
1 |
|
self.controller.buffers.app.put(event) |
1064
|
|
|
|
1065
|
1 |
|
def notify_interface_link_status(self, interface, reason): |
1066
|
|
|
"""Send an event to notify the status of a link from |
1067
|
|
|
an interface.""" |
1068
|
1 |
|
link = self._get_link_from_interface(interface) |
1069
|
1 |
|
if link: |
1070
|
1 |
|
if reason == "link enabled": |
1071
|
1 |
|
name = 'kytos/topology.notify_link_up_if_status' |
1072
|
1 |
|
content = {'reason': reason, "link": link} |
1073
|
1 |
|
event = KytosEvent(name=name, content=content) |
1074
|
1 |
|
self.controller.buffers.app.put(event) |
1075
|
|
|
else: |
1076
|
1 |
|
self.notify_link_status_change(link, reason) |
1077
|
|
|
|
1078
|
1 |
|
def notify_link_status_change(self, link, reason='not given'): |
1079
|
|
|
"""Send an event to notify about a status change on a link.""" |
1080
|
1 |
|
link_id = link.id |
1081
|
1 |
|
with self.link_status_lock: |
1082
|
1 |
|
if ( |
1083
|
|
|
(not link.status_reason and link.status == EntityStatus.UP) |
1084
|
|
|
and link_id not in self.link_up |
1085
|
|
|
): |
1086
|
1 |
|
self.link_up.add(link_id) |
1087
|
1 |
|
event = KytosEvent( |
1088
|
|
|
name='kytos/topology.link_up', |
1089
|
|
|
content={ |
1090
|
|
|
'link': link, |
1091
|
|
|
'reason': reason |
1092
|
|
|
}, |
1093
|
|
|
) |
1094
|
1 |
|
elif ( |
1095
|
|
|
(link.status_reason or link.status != EntityStatus.UP) |
1096
|
|
|
and link_id in self.link_up |
1097
|
|
|
): |
1098
|
1 |
|
self.link_up.remove(link_id) |
1099
|
1 |
|
event = KytosEvent( |
1100
|
|
|
name='kytos/topology.link_down', |
1101
|
|
|
content={ |
1102
|
|
|
'link': link, |
1103
|
|
|
'reason': reason |
1104
|
|
|
}, |
1105
|
|
|
) |
1106
|
|
|
else: |
1107
|
1 |
|
return |
1108
|
1 |
|
self.controller.buffers.app.put(event) |
1109
|
|
|
|
1110
|
1 |
|
def notify_metadata_changes(self, obj, action): |
1111
|
|
|
"""Send an event to notify about metadata changes.""" |
1112
|
1 |
|
if isinstance(obj, Switch): |
1113
|
1 |
|
entity = 'switch' |
1114
|
1 |
|
entities = 'switches' |
1115
|
1 |
|
elif isinstance(obj, Interface): |
1116
|
1 |
|
entity = 'interface' |
1117
|
1 |
|
entities = 'interfaces' |
1118
|
1 |
|
elif isinstance(obj, Link): |
1119
|
1 |
|
entity = 'link' |
1120
|
1 |
|
entities = 'links' |
1121
|
|
|
else: |
1122
|
1 |
|
raise ValueError( |
1123
|
|
|
'Invalid object, supported: Switch, Interface, Link' |
1124
|
|
|
) |
1125
|
|
|
|
1126
|
1 |
|
name = f'kytos/topology.{entities}.metadata.{action}' |
1127
|
1 |
|
content = {entity: obj, 'metadata': obj.metadata.copy()} |
1128
|
1 |
|
event = KytosEvent(name=name, content=content) |
1129
|
1 |
|
self.controller.buffers.app.put(event) |
1130
|
1 |
|
log.debug(f'Metadata from {obj.id} was {action}.') |
1131
|
|
|
|
1132
|
1 |
|
@listen_to('kytos/topology.notify_link_up_if_status') |
1133
|
1 |
|
def on_notify_link_up_if_status(self, event): |
1134
|
|
|
"""Tries to notify link up and topology changes""" |
1135
|
|
|
link = event.content["link"] |
1136
|
|
|
reason = event.content["reason"] |
1137
|
|
|
self.notify_link_up_if_status(link, reason) |
1138
|
|
|
|
1139
|
1 |
|
@listen_to('.*.switch.port.created') |
1140
|
1 |
|
def on_notify_port_created(self, event): |
1141
|
|
|
"""Notify when a port is created.""" |
1142
|
|
|
self.notify_port_created(event) |
1143
|
|
|
|
1144
|
1 |
|
def notify_port_created(self, event): |
1145
|
|
|
"""Notify when a port is created.""" |
1146
|
1 |
|
name = 'kytos/topology.port.created' |
1147
|
1 |
|
event = KytosEvent(name=name, content=event.content) |
1148
|
1 |
|
self.controller.buffers.app.put(event) |
1149
|
|
|
|
1150
|
1 |
|
@staticmethod |
1151
|
1 |
|
def load_interfaces_tags_values(switch: Switch, |
1152
|
|
|
interfaces_details: List[dict]) -> None: |
1153
|
|
|
"""Load interfaces available tags (vlans).""" |
1154
|
1 |
|
if not interfaces_details: |
1155
|
|
|
return |
1156
|
1 |
|
for interface_details in interfaces_details: |
1157
|
1 |
|
available_tags = interface_details['available_tags'] |
1158
|
1 |
|
if not available_tags: |
1159
|
|
|
continue |
1160
|
1 |
|
log.debug(f"Interface id {interface_details['id']} loading " |
1161
|
|
|
f"{len(available_tags)} " |
1162
|
|
|
"available tags") |
1163
|
1 |
|
port_number = int(interface_details["id"].split(":")[-1]) |
1164
|
1 |
|
interface = switch.interfaces[port_number] |
1165
|
1 |
|
interface.set_available_tags_tag_ranges( |
1166
|
|
|
available_tags, |
1167
|
|
|
interface_details['tag_ranges'], |
1168
|
|
|
interface_details['special_available_tags'], |
1169
|
|
|
interface_details['special_tags'], |
1170
|
|
|
) |
1171
|
|
|
|
1172
|
1 |
|
@listen_to('topology.interruption.start') |
1173
|
1 |
|
def on_interruption_start(self, event: KytosEvent): |
1174
|
|
|
"""Deals with the start of service interruption.""" |
1175
|
|
|
with self._links_lock: |
1176
|
|
|
self.handle_interruption_start(event) |
1177
|
|
|
|
1178
|
1 |
View Code Duplication |
def handle_interruption_start(self, event: KytosEvent): |
|
|
|
|
1179
|
|
|
"""Deals with the start of service interruption.""" |
1180
|
1 |
|
interrupt_type = event.content['type'] |
1181
|
1 |
|
switches = event.content.get('switches', []) |
1182
|
1 |
|
interfaces = event.content.get('interfaces', []) |
1183
|
1 |
|
links = event.content.get('links', []) |
1184
|
1 |
|
log.info( |
1185
|
|
|
'Received interruption start of type \'%s\' ' |
1186
|
|
|
'affecting switches %s, interfaces %s, links %s', |
1187
|
|
|
interrupt_type, |
1188
|
|
|
switches, |
1189
|
|
|
interfaces, |
1190
|
|
|
links |
1191
|
|
|
) |
1192
|
|
|
# for switch_id in switches: |
1193
|
|
|
# pass |
1194
|
|
|
# for interface_id in interfaces: |
1195
|
|
|
# pass |
1196
|
1 |
|
for link_id in links: |
1197
|
1 |
|
link = self.links.get(link_id) |
1198
|
1 |
|
if link is None: |
1199
|
|
|
log.error( |
1200
|
|
|
"Invalid link id '%s' for interruption of type '%s;", |
1201
|
|
|
link_id, |
1202
|
|
|
interrupt_type |
1203
|
|
|
) |
1204
|
|
|
else: |
1205
|
1 |
|
self.notify_link_status_change(link, interrupt_type) |
1206
|
1 |
|
self.notify_topology_update() |
1207
|
|
|
|
1208
|
1 |
|
@listen_to('topology.interruption.end') |
1209
|
1 |
|
def on_interruption_end(self, event: KytosEvent): |
1210
|
|
|
"""Deals with the end of service interruption.""" |
1211
|
|
|
with self._links_lock: |
1212
|
|
|
self.handle_interruption_end(event) |
1213
|
|
|
|
1214
|
1 |
View Code Duplication |
def handle_interruption_end(self, event: KytosEvent): |
|
|
|
|
1215
|
|
|
"""Deals with the end of service interruption.""" |
1216
|
1 |
|
interrupt_type = event.content['type'] |
1217
|
1 |
|
switches = event.content.get('switches', []) |
1218
|
1 |
|
interfaces = event.content.get('interfaces', []) |
1219
|
1 |
|
links = event.content.get('links', []) |
1220
|
1 |
|
log.info( |
1221
|
|
|
'Received interruption end of type \'%s\' ' |
1222
|
|
|
'affecting switches %s, interfaces %s, links %s', |
1223
|
|
|
interrupt_type, |
1224
|
|
|
switches, |
1225
|
|
|
interfaces, |
1226
|
|
|
links |
1227
|
|
|
) |
1228
|
|
|
# for switch_id in switches: |
1229
|
|
|
# pass |
1230
|
|
|
# for interface_id in interfaces: |
1231
|
|
|
# pass |
1232
|
1 |
|
for link_id in links: |
1233
|
1 |
|
link = self.links.get(link_id) |
1234
|
1 |
|
if link is None: |
1235
|
|
|
log.error( |
1236
|
|
|
"Invalid link id '%s' for interruption of type '%s;", |
1237
|
|
|
link_id, |
1238
|
|
|
interrupt_type |
1239
|
|
|
) |
1240
|
|
|
else: |
1241
|
1 |
|
self.notify_link_status_change(link, interrupt_type) |
1242
|
|
|
self.notify_topology_update() |
1243
|
|
|
|