-
Notifications
You must be signed in to change notification settings - Fork 4
/
multipath.py
357 lines (283 loc) · 14.8 KB
/
multipath.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
#!/usr/bin/python3
from import_multipath import *
REFERENCE_BW = 10000000
DEFAULT_BW = 10000000
MAX_PATHS = 2
@dataclass
class Paths:
''' Paths container'''
path: list()
cost: float
class Controller13(app_manager.RyuApp):
OFP_VERSIONS = [ofproto_v1_3.OFP_VERSION]
def __init__(self, *args, **kwargs):
super(Controller13, self).__init__(*args, **kwargs)
self.mac_to_port = {}
self.neigh = defaultdict(dict)
self.bw = defaultdict(lambda: defaultdict( lambda: DEFAULT_BW))
self.prev_bytes = defaultdict(lambda: defaultdict( lambda: 0))
self.hosts = {}
self.switches = []
self.arp_table = {}
self.path_table = {}
self.paths_table = {}
self.path_with_ports_table = {}
self.datapath_list = {}
self.path_calculation_keeper = []
def get_bandwidth(self, path, port, index):
return self.bw[path[index]][port]
def find_path_cost(self, path):
''' arg path is a list with all nodes in our route '''
path_cost = []
i = 0
while(i < len(path) - 1):
port1 = self.neigh[path[i]][path[i + 1]]
bandwidth_between_two_nodes = self.get_bandwidth(path, port1, i)
path_cost.append(bandwidth_between_two_nodes)
i += 1
return sum(path_cost)
def find_paths_and_costs(self, src, dst):
'''
Implementation of Breath-First Search Algorithm (BFS)
Output of this function returns an list on class Paths objects
'''
if src == dst:
return [Paths(src,0)]
queue = [(src, [src])]
possible_paths = list()
while queue:
(edge, path) = queue.pop()
for vertex in set(self.neigh[edge]) - set(path):
if vertex == dst:
path_to_dst = path + [vertex]
cost_of_path = self.find_path_cost(path_to_dst)
possible_paths.append(Paths(path_to_dst, cost_of_path))
else:
queue.append((vertex, path + [vertex]))
return possible_paths
def find_n_optimal_paths(self, paths, number_of_optimal_paths = MAX_PATHS):
'''arg paths is an list containing lists of possible paths'''
costs = [path.cost for path in paths]
optimal_paths_indexes = list(map(costs.index, heapq.nsmallest(number_of_optimal_paths,costs)))
optimal_paths = [paths[op_index] for op_index in optimal_paths_indexes]
return optimal_paths
def add_ports_to_paths(self, paths, first_port, last_port):
'''
Add the ports to all switches including hosts
'''
paths_n_ports = list()
bar = dict()
in_port = first_port
for s1, s2 in zip(paths[0].path[:-1], paths[0].path[1:]):
out_port = self.neigh[s1][s2]
bar[s1] = (in_port, out_port)
in_port = self.neigh[s2][s1]
bar[paths[0].path[-1]] = (in_port, last_port)
paths_n_ports.append(bar)
return paths_n_ports
def install_paths(self, src, first_port, dst, last_port, ip_src, ip_dst, type, pkt):
if (src, first_port, dst, last_port) not in self.path_calculation_keeper:
self.path_calculation_keeper.append((src, first_port, dst, last_port))
self.topology_discover(src, first_port, dst, last_port)
self.topology_discover(dst, last_port, src, first_port)
for node in self.path_table[(src, first_port, dst, last_port)][0].path:
dp = self.datapath_list[node]
ofp = dp.ofproto
ofp_parser = dp.ofproto_parser
actions = []
in_port = self.path_with_ports_table[(src, first_port, dst, last_port)][0][node][0]
out_port = self.path_with_ports_table[(src, first_port, dst, last_port)][0][node][1]
actions = [ofp_parser.OFPActionOutput(out_port)]
if type == 'UDP':
nw = pkt.get_protocol(ipv4.ipv4)
l4 = pkt.get_protocol(udp.udp)
match = ofp_parser.OFPMatch(in_port = in_port, eth_type=ether_types.ETH_TYPE_IP, ipv4_src=ip_src, ipv4_dst = ip_dst,
ip_proto=inet.IPPROTO_UDP, udp_src = l4.src_port, udp_dst = l4.dst_port)
self.logger.info(f"Installed path in switch: {node} out port: {out_port} in port: {in_port} ")
self.add_flow(dp, 33333, match, actions, 10)
self.logger.info("UDP Flow added ! ")
elif type == 'TCP':
nw = pkt.get_protocol(ipv4.ipv4)
l4 = pkt.get_protocol(tcp.tcp)
match = ofp_parser.OFPMatch(in_port = in_port,eth_type=ether_types.ETH_TYPE_IP, ipv4_src=ip_src, ipv4_dst = ip_dst,
ip_proto=inet.IPPROTO_TCP,tcp_src = l4.src_port, tcp_dst = l4.dst_port)
self.logger.info(f"Installed path in switch: {node} out port: {out_port} in port: {in_port} ")
self.add_flow(dp, 44444, match, actions, 10)
self.logger.info("TCP Flow added ! ")
elif type == 'ICMP':
nw = pkt.get_protocol(ipv4.ipv4)
match = ofp_parser.OFPMatch(in_port=in_port,
eth_type=ether_types.ETH_TYPE_IP,
ipv4_src=ip_src,
ipv4_dst = ip_dst,
ip_proto=inet.IPPROTO_ICMP)
self.logger.info(f"Installed path in switch: {node} out port: {out_port} in port: {in_port} ")
self.add_flow(dp, 22222, match, actions, 10)
self.logger.info("ICMP Flow added ! ")
elif type == 'ARP':
match_arp = ofp_parser.OFPMatch(in_port = in_port,eth_type=ether_types.ETH_TYPE_ARP, arp_spa=ip_src, arp_tpa=ip_dst)
self.logger.info(f"Install path in switch: {node} out port: {out_port} in port: {in_port} ")
self.add_flow(dp, 1, match_arp, actions, 10)
self.logger.info("ARP Flow added ! ")
return self.path_with_ports_table[(src, first_port, dst, last_port)][0][src][1]
def add_flow(self, datapath, priority, match, actions, idle_timeout, buffer_id = None):
''' Method Provided by the source Ryu library.'''
ofproto = datapath.ofproto
parser = datapath.ofproto_parser
inst = [parser.OFPInstructionActions(ofproto.OFPIT_APPLY_ACTIONS,
actions)]
if buffer_id:
mod = parser.OFPFlowMod(datapath=datapath, buffer_id=buffer_id,
priority=priority, match=match, idle_timeout = idle_timeout,
instructions=inst)
else:
mod = parser.OFPFlowMod(datapath=datapath, priority=priority,
match=match, idle_timeout = idle_timeout, instructions=inst)
datapath.send_msg(mod)
def run_check(self, ofp_parser, dp):
threading.Timer(1.0, self.run_check, args=(ofp_parser, dp)).start()
req = ofp_parser.OFPPortStatsRequest(dp)
dp.send_msg(req)
def topology_discover(self, src, first_port, dst, last_port):
threading.Timer(1.0, self.topology_discover, args=(src, first_port, dst, last_port)).start()
paths = self.find_paths_and_costs(src, dst)
path = self.find_n_optimal_paths(paths)
path_with_port = self.add_ports_to_paths(path, first_port, last_port)
self.logger.info(f"Possible paths: {paths}")
self.logger.info(f"Optimal Path with port: {path_with_port}")
self.paths_table[(src, first_port, dst, last_port)] = paths
self.path_table[(src, first_port, dst, last_port)] = path
self.path_with_ports_table[(src, first_port, dst, last_port)] = path_with_port
@set_ev_cls(ofp_event.EventOFPPacketIn, MAIN_DISPATCHER)
def _packet_in_handler(self, ev):
if ev.msg.msg_len < ev.msg.total_len:
self.logger.debug("packet truncated: only %s of %s bytes", ev.msg.msg_len, ev.msg.total_len)
msg = ev.msg
datapath = msg.datapath
ofproto = datapath.ofproto
parser = datapath.ofproto_parser
in_port = msg.match['in_port']
pkt = packet.Packet(msg.data)
eth = pkt.get_protocols(ethernet.ethernet)[0]
arp_pkt = pkt.get_protocol(arp.arp)
ip_pkt = pkt.get_protocol(ipv4.ipv4)
if eth.ethertype == ether_types.ETH_TYPE_LLDP:
return
dst = eth.dst
src = eth.src
dpid = datapath.id
if src not in self.hosts:
self.hosts[src] = (dpid, in_port)
out_port = ofproto.OFPP_FLOOD
if eth.ethertype == ether_types.ETH_TYPE_IP:
nw = pkt.get_protocol(ipv4.ipv4)
if nw.proto == inet.IPPROTO_UDP:
l4 = pkt.get_protocol(udp.udp)
elif nw.proto == inet.IPPROTO_TCP:
l4 = pkt.get_protocol(tcp.tcp)
if eth.ethertype == ether_types.ETH_TYPE_IP and nw.proto == inet.IPPROTO_UDP:
src_ip = nw.src
dst_ip = nw.dst
self.arp_table[src_ip] = src
h1 = self.hosts[src]
h2 = self.hosts[dst]
self.logger.info(f" IP Proto UDP from: {nw.src} to: {nw.dst}")
out_port = self.install_paths(h1[0], h1[1], h2[0], h2[1], src_ip, dst_ip, 'UDP', pkt)
self.install_paths(h2[0], h2[1], h1[0], h1[1], dst_ip, src_ip, 'UDP', pkt)
elif eth.ethertype == ether_types.ETH_TYPE_IP and nw.proto == inet.IPPROTO_TCP:
src_ip = nw.src
dst_ip = nw.dst
self.arp_table[src_ip] = src
h1 = self.hosts[src]
h2 = self.hosts[dst]
self.logger.info(f" IP Proto TCP from: {nw.src} to: {nw.dst}")
out_port = self.install_paths(h1[0], h1[1], h2[0], h2[1], src_ip, dst_ip, 'TCP', pkt)
self.install_paths(h2[0], h2[1], h1[0], h1[1], dst_ip, src_ip, 'TCP', pkt)
elif eth.ethertype == ether_types.ETH_TYPE_IP and nw.proto == inet.IPPROTO_ICMP:
src_ip = nw.src
dst_ip = nw.dst
self.arp_table[src_ip] = src
h1 = self.hosts[src]
h2 = self.hosts[dst]
self.logger.info(f" IP Proto ICMP from: {nw.src} to: {nw.dst}")
out_port = self.install_paths(h1[0], h1[1], h2[0], h2[1], src_ip, dst_ip, 'ICMP', pkt)
self.install_paths(h2[0], h2[1], h1[0], h1[1], dst_ip, src_ip, 'ICMP', pkt)
elif eth.ethertype == ether_types.ETH_TYPE_ARP:
src_ip = arp_pkt.src_ip
dst_ip = arp_pkt.dst_ip
if arp_pkt.opcode == arp.ARP_REPLY:
self.arp_table[src_ip] = src
h1 = self.hosts[src]
h2 = self.hosts[dst]
self.logger.info(f" ARP Reply from: {src_ip} to: {dst_ip} H1: {h1} H2: {h2}")
out_port = self.install_paths(h1[0], h1[1], h2[0], h2[1], src_ip, dst_ip, 'ARP', pkt)
self.install_paths(h2[0], h2[1], h1[0], h1[1], dst_ip, src_ip, 'ARP', pkt)
elif arp_pkt.opcode == arp.ARP_REQUEST:
if dst_ip in self.arp_table:
self.arp_table[src_ip] = src
dst_mac = self.arp_table[dst_ip]
h1 = self.hosts[src]
h2 = self.hosts[dst_mac]
self.logger.info(f" ARP Reply from: {src_ip} to: {dst_ip} H1: {h1} H2: {h2}")
out_port = self.install_paths(h1[0], h1[1], h2[0], h2[1], src_ip, dst_ip, 'ARP', pkt)
self.install_paths(h2[0], h2[1], h1[0], h1[1], dst_ip, src_ip, 'ARP', pkt)
actions = [parser.OFPActionOutput(out_port)]
data = None
if msg.buffer_id == ofproto.OFP_NO_BUFFER:
data = msg.data
out = parser.OFPPacketOut(datapath=datapath, buffer_id=msg.buffer_id,
in_port=in_port, actions=actions, data=data)
datapath.send_msg(out)
@set_ev_cls(ofp_event.EventOFPSwitchFeatures, CONFIG_DISPATCHER)
def _switch_features_handler(self, ev):
'''
To send packets for which we dont have right information to the controller
Method Provided by the source Ryu library.
'''
datapath = ev.msg.datapath
ofproto = datapath.ofproto
parser = datapath.ofproto_parser
match = parser.OFPMatch()
actions = [parser.OFPActionOutput(ofproto.OFPP_CONTROLLER,
ofproto.OFPCML_NO_BUFFER)]
self.add_flow(datapath, 0, match, actions, 10)
@set_ev_cls(ofp_event.EventOFPPortStatsReply, MAIN_DISPATCHER)
def _port_stats_reply_handler(self, ev):
'''Reply to the OFPPortStatsRequest, visible beneath'''
switch_dpid = ev.msg.datapath.id
for p in ev.msg.body:
self.bw[switch_dpid][p.port_no] = (p.tx_bytes - self.prev_bytes[switch_dpid][p.port_no])*8.0/1000000
self.prev_bytes[switch_dpid][p.port_no] = p.tx_bytes
@set_ev_cls(event.EventSwitchEnter)
def switch_enter_handler(self, ev):
switch_dp = ev.switch.dp
switch_dpid = switch_dp.id
ofp_parser = switch_dp.ofproto_parser
self.logger.info(f"Switch has been plugged in PID: {switch_dpid}")
if switch_dpid not in self.switches:
self.datapath_list[switch_dpid] = switch_dp
self.switches.append(switch_dpid)
self.run_check(ofp_parser, switch_dp)
@set_ev_cls(event.EventSwitchLeave, MAIN_DISPATCHER)
def switch_leave_handler(self, ev):
switch = ev.switch.dp.id
if switch in self.switches:
try:
self.switches.remove(switch)
del self.datapath_list[switch]
del self.neigh[switch]
except KeyError:
self.logger.info(f"Switch has been already pulged off PID{switch}!")
@set_ev_cls(event.EventLinkAdd, MAIN_DISPATCHER)
def link_add_handler(self, ev):
self.neigh[ev.link.src.dpid][ev.link.dst.dpid] = ev.link.src.port_no
self.neigh[ev.link.dst.dpid][ev.link.src.dpid] = ev.link.dst.port_no
self.logger.info(f"Link between switches has been established, SW1 DPID: {ev.link.src.dpid}:{ev.link.dst.port_no} SW2 DPID: {ev.link.dst.dpid}:{ev.link.dst.port_no}")
@set_ev_cls(event.EventLinkDelete, MAIN_DISPATCHER)
def link_delete_handler(self, ev):
try:
del self.neigh[ev.link.src.dpid][ev.link.dst.dpid]
del self.neigh[ev.link.dst.dpid][ev.link.src.dpid]
except KeyError:
self.logger.info("Link has been already pluged off!")
pass