blob: f6c0e9226474b57598dd9a91bf12e887c0e7063b [file] [log] [blame]
macauley97557232015-07-16 17:28:07 +08001import logging
2
3from oftest import config
4import oftest.base_tests as base_tests
5import ofp
6import time
7from oftest.testutils import *
8
macauleyfddc4662015-07-27 17:40:30 +08009from ncclient import manager
10import ncclient
11
macauley97557232015-07-16 17:28:07 +080012OFDPA_GROUP_TYPE_SHIFT=28
13OFDPA_VLAN_ID_SHIFT =16
macauleyfddc4662015-07-27 17:40:30 +080014OFDPA_TUNNEL_ID_SHIFT =12
15OFDPA_TUNNEL_SUBTYPE_SHIFT=10
macauley97557232015-07-16 17:28:07 +080016
17#VLAN_TABLE_FLAGS
18VLAN_TABLE_FLAG_ONLY_UNTAG=1
19VLAN_TABLE_FLAG_ONLY_TAG =2
20VLAN_TABLE_FLAG_ONLY_BOTH =3
21
macauleye8b140e2015-08-03 13:35:45 +080022PORT_FLOW_TABLE=0
23VLAN_FLOW_TABLE=10
24TERMINATION_FLOW_TABLE=20
25UCAST_ROUTING_FLOW_TABLE=30
26MCAST_ROUTING_FLOW_TABLE=40
27BRIDGE_FLOW_TABLE=50
28ACL_FLOW_TABLE=60
29
30def convertIP4toStr(ip_addr):
31 a=(ip_addr&0xff000000)>>24
32 b=(ip_addr&0x00ff0000)>>16
33 c=(ip_addr&0x0000ff00)>>8
34 d=(ip_addr&0x000000ff)
35 return str(a)+"."+str(b)+"."+str(c)+"."+str(d)
36
37def convertMACtoStr(mac):
38 if not isinstance(mac, list):
39 assert(0)
40
41 return ':'.join(['%02X' % x for x in mac])
42
macauley7f89d962015-08-06 18:13:48 +080043def getSwitchCpuMACFromDPID(dpid):
44 str_datapath_id_f= "{:016x}".format(dpid)
45 str_datapath_id=':'.join([str_datapath_id_f[i:i+2] for i in range(0, len(str_datapath_id_f), 2)])
46 switch_cpu_mac_str=str_datapath_id[6:]
47 switch_cpu_mac = switch_cpu_mac_str.split(":")
48 switch_cpu_mac=[int(switch_cpu_mac[i],16) for i in range(0, len(switch_cpu_mac))]
49
50 return switch_cpu_mac_str, switch_cpu_mac
macauley_cheng67da9262015-08-31 15:18:41 +080051
52def DumpGroup(stats, verify_group_stats, always_show=True):
53 if(len(stats) > len(verify_group_stats)):
54 min_len = len(verify_group_stats)
55 print "Stats Len is not the same, stats>verify_group_stats"
56 if(len(stats)< len(verify_group_stats)):
57 min_len = len(stats)
58 print "Stats Len is not the same, stats<verify_group_stats"
59 else:
60 min_len = len(stats)
macauleye8b140e2015-08-03 13:35:45 +080061
macauley_cheng67da9262015-08-31 15:18:41 +080062 print "\r\n"
63 for i in range(min_len):
64 gs = stats[i]
65 gv = verify_group_stats[i]
66 print "FromSwtich:(GID=%lx, TYPE=%lx)\r\nVerify :(GID=%lx, TYPE=%lx)"%(gs.group_id, gs.group_type, gv.group_id, gv.group_type)
67 if(len(gs.buckets) != len(gv.buckets)):
68 print "buckets len is not the same gs %lx, gv %lx",(len(gs.buckets), len(gv.buckets))
69
70 for j in range(len(gs.buckets)):
71 b1=gs.buckets[j]
72 b2=gv.buckets[j]
73 if(len(b1.actions) != len(b2.actions)):
74 print "action len is not the same"
75
76 for k in range(len(b1.actions)):
77 a1=b1.actions[k]
78 a2=b2.actions[k]
79 if(always_show == True):
80 print "a1:"+a1.show()
81 print "a2:"+a2.show()
82
83def AssertGroup(self, stats, verify_group_stats):
84 self.assertTrue(len(stats) ==len(verify_group_stats), "stats len is not the same")
85
86 for i in range(len(stats)):
87 gs = stats[i]
88 gv = verify_group_stats[i]
89 self.assertTrue(len(gs.buckets) == len(gv.buckets), "buckets len is not the same")
90
91 for j in range(len(gs.buckets)):
92 b1=gs.buckets[j]
93 b2=gv.buckets[j]
94 self.assertTrue(len(b1.actions) == len(b2.actions), "action len is not the same")
95
96 for k in range(len(b1.actions)):
97 a1=b1.actions[k]
98 a2=b2.actions[k]
99 self.assertEquals(a1, a2, "action is not the same")
100
macauley97557232015-07-16 17:28:07 +0800101def encode_l2_interface_group_id(vlan, id):
102 return id + (vlan << OFDPA_VLAN_ID_SHIFT)
103
104def encode_l2_rewrite_group_id(id):
105 return id + (1 << OFDPA_GROUP_TYPE_SHIFT)
106
107def encode_l3_unicast_group_id(id):
108 return id + (2 << OFDPA_GROUP_TYPE_SHIFT)
109
110def encode_l2_mcast_group_id(vlan, id):
111 return id + (vlan << OFDPA_VLAN_ID_SHIFT) + (3 << OFDPA_GROUP_TYPE_SHIFT)
112
113def encode_l2_flood_group_id(vlan, id):
114 return id + (vlan << OFDPA_VLAN_ID_SHIFT) + (4 << OFDPA_GROUP_TYPE_SHIFT)
115
116def encode_l3_interface_group_id(id):
117 return id + (5 << OFDPA_GROUP_TYPE_SHIFT)
118
119def encode_l3_mcast_group_id(vlan, id):
120 return id + (vlan << OFDPA_VLAN_ID_SHIFT)+(6 << OFDPA_GROUP_TYPE_SHIFT)
121
122def encode_l3_ecmp_group_id(id):
123 return id + (7 << OFDPA_GROUP_TYPE_SHIFT)
124
macauleyfddc4662015-07-27 17:40:30 +0800125def encode_l2_overlay_group_id(tunnel_id, subtype, index):
126 tunnel_id=tunnel_id&0xffff #16 bits
127 subtype = subtype&3 #2 bits
128 index = index & 0x3f #10 bits
129 return index + (tunnel_id << OFDPA_TUNNEL_ID_SHIFT)+ (subtype<<OFDPA_TUNNEL_SUBTYPE_SHIFT)+(8 << OFDPA_GROUP_TYPE_SHIFT)
macauley97557232015-07-16 17:28:07 +0800130
Flavio Castrod4c44d12015-12-08 14:44:18 -0500131def add_l2_interface_group(ctrl, ports, vlan_id=1, is_tagged=False, send_barrier=False):
macauley97557232015-07-16 17:28:07 +0800132 # group table
133 # set up untag groups for each port
macauley41904ed2015-07-16 17:38:35 +0800134 group_id_list=[]
macauley15909e72015-07-17 15:58:57 +0800135 msgs=[]
macauley97557232015-07-16 17:28:07 +0800136 for of_port in ports:
137 # do stuff
138 group_id = encode_l2_interface_group_id(vlan_id, of_port)
macauley41904ed2015-07-16 17:38:35 +0800139 group_id_list.append(group_id)
macauley97557232015-07-16 17:28:07 +0800140 if is_tagged:
141 actions = [
142 ofp.action.output(of_port),
143 ]
144 else:
145 actions = [
146 ofp.action.pop_vlan(),
147 ofp.action.output(of_port),
148 ]
149
150 buckets = [
151 ofp.bucket(actions=actions),
152 ]
153
154 request = ofp.message.group_add(group_type=ofp.OFPGT_INDIRECT,
155 group_id=group_id,
156 buckets=buckets
157 )
158 ctrl.message_send(request)
macauley15909e72015-07-17 15:58:57 +0800159 msgs.append(request)
macauley97557232015-07-16 17:28:07 +0800160
161 if send_barrier:
162 do_barrier(ctrl)
macauley41904ed2015-07-16 17:38:35 +0800163
macauley15909e72015-07-17 15:58:57 +0800164 return group_id_list, msgs
macauley97557232015-07-16 17:28:07 +0800165
Flavio Castrod4c44d12015-12-08 14:44:18 -0500166def add_one_l2_interface_group(ctrl, port, vlan_id=1, is_tagged=False, send_barrier=False):
macauley0f91a3e2015-07-17 18:09:59 +0800167 # group table
168 # set up untag groups for each port
169 group_id = encode_l2_interface_group_id(vlan_id, port)
170
171 if is_tagged:
172 actions = [
173 ofp.action.output(port),
174 ]
175 else:
176 actions = [
177 ofp.action.pop_vlan(),
178 ofp.action.output(port),
179 ]
180
181 buckets = [
182 ofp.bucket(actions=actions),
183 ]
184
185 request = ofp.message.group_add(group_type=ofp.OFPGT_INDIRECT,
186 group_id=group_id,
187 buckets=buckets
188 )
189 ctrl.message_send(request)
190
191 if send_barrier:
192 do_barrier(ctrl)
193
194 return group_id, request
195
macauley97557232015-07-16 17:28:07 +0800196def add_l2_mcast_group(ctrl, ports, vlanid, mcast_grp_index):
197 buckets=[]
198 for of_port in ports:
199 group_id = encode_l2_interface_group_id(vlanid, of_port)
200 action=[ofp.action.group(group_id)]
201 buckets.append(ofp.bucket(actions=action))
202
203 group_id =encode_l2_mcast_group_id(vlanid, mcast_grp_index)
204 request = ofp.message.group_add(group_type=ofp.OFPGT_ALL,
205 group_id=group_id,
206 buckets=buckets
207 )
208 ctrl.message_send(request)
macauley15909e72015-07-17 15:58:57 +0800209 return request
macauley97557232015-07-16 17:28:07 +0800210
macauley15909e72015-07-17 15:58:57 +0800211def add_l2_flood_group(ctrl, ports, vlanid, id):
212 buckets=[]
213 for of_port in ports:
214 group_id = encode_l2_interface_group_id(vlanid, of_port)
215 action=[ofp.action.group(group_id)]
216 buckets.append(ofp.bucket(actions=action))
macauley97557232015-07-16 17:28:07 +0800217
macauley15909e72015-07-17 15:58:57 +0800218 group_id =encode_l2_flood_group_id(vlanid, id)
219 request = ofp.message.group_add(group_type=ofp.OFPGT_ALL,
220 group_id=group_id,
221 buckets=buckets
222 )
223 ctrl.message_send(request)
224 return request
225
226def add_l2_rewrite_group(ctrl, port, vlanid, id, src_mac, dst_mac):
227 group_id = encode_l2_interface_group_id(vlanid, port)
228
229 action=[]
230 if src_mac is not None:
231 action.append(ofp.action.set_field(ofp.oxm.eth_src(src_mac)))
232
233 if dst_mac is not None:
234 action.append(ofp.action.set_field(ofp.oxm.eth_dst(dst_mac)))
235
macauley_cheng93f3fa52015-09-02 17:57:31 +0800236 action.append(ofp.action.set_field(ofp.oxm.vlan_vid(vlanid)))
237
macauley15909e72015-07-17 15:58:57 +0800238 action.append(ofp.action.group(group_id))
239
240 buckets = [ofp.bucket(actions=action)]
241
242 group_id =encode_l2_rewrite_group_id(id)
243 request = ofp.message.group_add(group_type=ofp.OFPGT_INDIRECT,
244 group_id=group_id,
245 buckets=buckets
246 )
247 ctrl.message_send(request)
248 return request
249
250def add_l3_unicast_group(ctrl, port, vlanid, id, src_mac, dst_mac):
251 group_id = encode_l2_interface_group_id(vlanid, port)
252
253 action=[]
254 if src_mac is not None:
255 action.append(ofp.action.set_field(ofp.oxm.eth_src(src_mac)))
256
257 if dst_mac is not None:
258 action.append(ofp.action.set_field(ofp.oxm.eth_dst(dst_mac)))
259
260 action.append(ofp.action.set_field(ofp.oxm.vlan_vid(vlanid)))
261
262 action.append(ofp.action.group(group_id))
263
264 buckets = [ofp.bucket(actions=action)]
265
266 group_id =encode_l3_unicast_group_id(id)
267 request = ofp.message.group_add(group_type=ofp.OFPGT_INDIRECT,
268 group_id=group_id,
269 buckets=buckets
270 )
271 ctrl.message_send(request)
272 return request
273
274def add_l3_interface_group(ctrl, port, vlanid, id, src_mac):
275 group_id = encode_l2_interface_group_id(vlanid, port)
276
277 action=[]
278 action.append(ofp.action.set_field(ofp.oxm.eth_src(src_mac)))
279 action.append(ofp.action.set_field(ofp.oxm.vlan_vid(vlanid)))
280 action.append(ofp.action.group(group_id))
281
282 buckets = [ofp.bucket(actions=action)]
283
284 group_id =encode_l3_interface_group_id(id)
285 request = ofp.message.group_add(group_type=ofp.OFPGT_INDIRECT,
286 group_id=group_id,
287 buckets=buckets
288 )
289 ctrl.message_send(request)
290 return request
291
292def add_l3_ecmp_group(ctrl, id, l3_ucast_groups):
293 buckets=[]
294 for group in l3_ucast_groups:
295 buckets.append(ofp.bucket(actions=[ofp.action.group(group)]))
296
297 group_id =encode_l3_ecmp_group_id(id)
298 request = ofp.message.group_add(group_type=ofp.OFPGT_SELECT,
299 group_id=group_id,
300 buckets=buckets
301 )
302 ctrl.message_send(request)
303 return request
304
305def add_l3_mcast_group(ctrl, vid, mcast_group_id, groups_on_buckets):
306 buckets=[]
307 for group in groups_on_buckets:
308 buckets.append(ofp.bucket(actions=[ofp.action.group(group)]))
309
310 group_id =encode_l3_mcast_group_id(vid, mcast_group_id)
311 request = ofp.message.group_add(group_type=ofp.OFPGT_ALL,
312 group_id=group_id,
313 buckets=buckets
314 )
315 ctrl.message_send(request)
316 return request
macauleyfddc4662015-07-27 17:40:30 +0800317
318def add_l2_overlay_flood_over_unicast_tunnel_group(ctrl, tunnel_id, ports, index):
319 buckets=[]
320 for port in ports:
321 buckets.append(ofp.bucket(actions=[ofp.action.output(port)]))
322
323 group_id=encode_l2_overlay_group_id(tunnel_id, 0, index)
324 request = ofp.message.group_add(group_type=ofp.OFPGT_ALL,
325 group_id=group_id,
326 buckets=buckets
327 )
328 ctrl.message_send(request)
329 return request
330
331def add_l2_overlay_flood_over_mcast_tunnel_group(ctrl, tunnel_id, ports, index):
332 buckets=[]
333 for port in ports:
334 buckets.append(ofp.bucket(actions=[ofp.action.output(port)]))
335
336 group_id=encode_l2_overlay_group_id(tunnel_id, 1, index)
337 request = ofp.message.group_add(group_type=ofp.OFPGT_ALL,
338 group_id=group_id,
339 buckets=buckets
340 )
341 ctrl.message_send(request)
342 return request
343
344def add_l2_overlay_mcast_over_unicast_tunnel_group(ctrl, tunnel_id, ports, index):
345 buckets=[]
346 for port in ports:
347 buckets.append(ofp.bucket(actions=[ofp.action.output(port)]))
348
349 group_id=encode_l2_overlay_group_id(tunnel_id, 2, index)
350 request = ofp.message.group_add(group_type=ofp.OFPGT_ALL,
351 group_id=group_id,
352 buckets=buckets
353 )
354 ctrl.message_send(request)
355 return request
356
357def add_l2_overlay_mcast_over_mcast_tunnel_group(ctrl, tunnel_id, ports, index):
358 buckets=[]
359 for port in ports:
360 buckets.append(ofp.bucket(actions=[ofp.action.output(port)]))
361
362 group_id=encode_l2_overlay_group_id(tunnel_id, 3, index)
363 request = ofp.message.group_add(group_type=ofp.OFPGT_ALL,
364 group_id=group_id,
365 buckets=buckets
366 )
367 ctrl.message_send(request)
368 return request
369
370def add_port_table_flow(ctrl, is_overlay=True):
371 match = ofp.match()
372
373 if is_overlay == True:
374 match.oxm_list.append(ofp.oxm.in_port(0x10000))
macauleydbff3272015-07-30 14:07:16 +0800375 NEXT_TABLE=50
macauleyfddc4662015-07-27 17:40:30 +0800376 else:
377 match.oxm_list.append(ofp.oxm.in_port(0))
macauleydbff3272015-07-30 14:07:16 +0800378 NEXT_TABLE=10
macauleyfddc4662015-07-27 17:40:30 +0800379
380 request = ofp.message.flow_add(
381 table_id=0,
382 cookie=42,
383 match=match,
384 instructions=[
macauleydbff3272015-07-30 14:07:16 +0800385 ofp.instruction.goto_table(NEXT_TABLE)
macauleyfddc4662015-07-27 17:40:30 +0800386 ],
387 priority=0)
388 logging.info("Add port table, match port %lx" % 0x10000)
389 ctrl.message_send(request)
macauleydbff3272015-07-30 14:07:16 +0800390
Flavio Castrod8f8af22015-12-02 18:19:26 -0500391
392def pop_vlan_flow(ctrl, ports, vlan_id=1):
393 # table 10: vlan
394 # goto to table 20
395 msgs=[]
396 for of_port in ports:
397 match = ofp.match()
398 match.oxm_list.append(ofp.oxm.in_port(of_port))
399 match.oxm_list.append(ofp.oxm.vlan_vid(0x1000+vlan_id))
400 request = ofp.message.flow_add(
401 table_id=10,
402 cookie=42,
403 match=match,
404 instructions=[
405 ofp.instruction.apply_actions(
406 actions=[
407 ofp.action.pop_vlan()
408 ]
409 ),
410 ofp.instruction.goto_table(20)
411 ],
412 priority=0)
413 logging.info("Add vlan %d tagged packets on port %d and go to table 20" %( vlan_id, of_port))
414 ctrl.message_send(request)
415
416
417 return msgs
macauleyfddc4662015-07-27 17:40:30 +0800418
macauley97557232015-07-16 17:28:07 +0800419def add_vlan_table_flow(ctrl, ports, vlan_id=1, flag=VLAN_TABLE_FLAG_ONLY_BOTH, send_barrier=False):
420 # table 10: vlan
421 # goto to table 20
macauley15909e72015-07-17 15:58:57 +0800422 msgs=[]
macauley97557232015-07-16 17:28:07 +0800423 for of_port in ports:
424 if (flag == VLAN_TABLE_FLAG_ONLY_TAG) or (flag == VLAN_TABLE_FLAG_ONLY_BOTH):
425 match = ofp.match()
426 match.oxm_list.append(ofp.oxm.in_port(of_port))
427 match.oxm_list.append(ofp.oxm.vlan_vid(0x1000+vlan_id))
428 request = ofp.message.flow_add(
429 table_id=10,
430 cookie=42,
431 match=match,
432 instructions=[
Flavio Castrod8f8af22015-12-02 18:19:26 -0500433 ofp.instruction.apply_actions(
434 actions=[
435 ofp.action.pop_vlan()
436 ]
437 ),
macauley97557232015-07-16 17:28:07 +0800438 ofp.instruction.goto_table(20)
439 ],
440 priority=0)
441 logging.info("Add vlan %d tagged packets on port %d and go to table 20" %( vlan_id, of_port))
442 ctrl.message_send(request)
443
444 if (flag == VLAN_TABLE_FLAG_ONLY_UNTAG) or (flag == VLAN_TABLE_FLAG_ONLY_BOTH):
445 match = ofp.match()
446 match.oxm_list.append(ofp.oxm.in_port(of_port))
macauley_cheng6b311612015-09-04 11:32:27 +0800447 match.oxm_list.append(ofp.oxm.vlan_vid_masked(0, 0xfff))
macauley97557232015-07-16 17:28:07 +0800448 request = ofp.message.flow_add(
449 table_id=10,
450 cookie=42,
451 match=match,
452 instructions=[
453 ofp.instruction.apply_actions(
454 actions=[
455 ofp.action.set_field(ofp.oxm.vlan_vid(0x1000+vlan_id))
456 ]
457 ),
458 ofp.instruction.goto_table(20)
459 ],
460 priority=0)
461 logging.info("Add vlan %d untagged packets on port %d and go to table 20" % (vlan_id, of_port))
462 ctrl.message_send(request)
macauley15909e72015-07-17 15:58:57 +0800463 msgs.append(request)
macauley97557232015-07-16 17:28:07 +0800464
465 if send_barrier:
466 do_barrier(ctrl)
467
macauley15909e72015-07-17 15:58:57 +0800468 return msgs
macauley_cheng6e6a6122015-11-16 14:19:18 +0800469
470def del_vlan_table_flow(ctrl, ports, vlan_id=1, flag=VLAN_TABLE_FLAG_ONLY_BOTH, send_barrier=False):
471 # table 10: vlan
472 # goto to table 20
473 msgs=[]
474 for of_port in ports:
475 if (flag == VLAN_TABLE_FLAG_ONLY_TAG) or (flag == VLAN_TABLE_FLAG_ONLY_BOTH):
476 match = ofp.match()
477 match.oxm_list.append(ofp.oxm.in_port(of_port))
478 match.oxm_list.append(ofp.oxm.vlan_vid(0x1000+vlan_id))
479 request = ofp.message.flow_delete(
480 table_id=10,
481 cookie=42,
482 match=match,
483 priority=0)
484 logging.info("Del vlan %d tagged packets on port %d and go to table 20" %( vlan_id, of_port))
485 ctrl.message_send(request)
macauley0f91a3e2015-07-17 18:09:59 +0800486
macauley_cheng6e6a6122015-11-16 14:19:18 +0800487 if (flag == VLAN_TABLE_FLAG_ONLY_UNTAG) or (flag == VLAN_TABLE_FLAG_ONLY_BOTH):
488 match = ofp.match()
489 match.oxm_list.append(ofp.oxm.in_port(of_port))
490 match.oxm_list.append(ofp.oxm.vlan_vid_masked(0, 0xfff))
491 request = ofp.message.flow_delete(
492 table_id=10,
493 cookie=42,
494 match=match,
495 priority=0)
496 logging.info("Del vlan %d untagged packets on port %d and go to table 20" % (vlan_id, of_port))
497 ctrl.message_send(request)
498 msgs.append(request)
499
500 if send_barrier:
501 do_barrier(ctrl)
502
503 return msgs
504
macauley_cheng6b311612015-09-04 11:32:27 +0800505def add_vlan_table_flow_pvid(ctrl, in_port, match_vid=None, pvid=1, send_barrier=False):
506 """it will tag pack as untagged packet wether it has tagg or not"""
507 match = ofp.match()
508 match.oxm_list.append(ofp.oxm.in_port(in_port))
509 actions=[]
510 if match_vid == None:
511 match.oxm_list.append(ofp.oxm.vlan_vid(0))
512 actions.append(ofp.action.set_field(ofp.oxm.vlan_vid(0x1000+pvid)))
513 goto_table=20
514 else:
515 match.oxm_list.append(ofp.oxm.vlan_vid_masked(0x1000+match_vid, 0x1fff))
516 actions.append(ofp.action.push_vlan(0x8100))
517 actions.append(ofp.action.set_field(ofp.oxm.vlan_vid(0x1000+pvid)))
518 goto_table=20
519
520 request = ofp.message.flow_add(
521 table_id=10,
522 cookie=42,
523 match=match,
524 instructions=[
525 ofp.instruction.apply_actions(actions=actions)
526 ,ofp.instruction.goto_table(goto_table)
527 ],
528 priority=0)
529 logging.info("Add PVID %d on port %d and go to table %ld" %( pvid, in_port, goto_table))
530 ctrl.message_send(request)
531
532 if send_barrier:
533 do_barrier(ctrl)
534
535def add_vlan_table_flow_allow_all_vlan(ctrl, in_port, send_barrier=False):
536 """it st flow allow all vlan tag on this port"""
537 match = ofp.match()
538 match.oxm_list.append(ofp.oxm.in_port(in_port))
539 match.oxm_list.append(ofp.oxm.vlan_vid_masked(0x1000, 0x1000))
540 request = ofp.message.flow_add(
541 table_id=10,
542 cookie=42,
543 match=match,
544 instructions=[
545 ofp.instruction.goto_table(20)
546 ],
547 priority=0)
548 logging.info("Add allow all vlan on port %d " %(in_port))
549 ctrl.message_send(request)
550
551
macauley53d90fe2015-08-04 17:34:22 +0800552def add_one_vlan_table_flow(ctrl, of_port, vlan_id=1, vrf=0, flag=VLAN_TABLE_FLAG_ONLY_BOTH, send_barrier=False):
macauley0f91a3e2015-07-17 18:09:59 +0800553 # table 10: vlan
554 # goto to table 20
555 if (flag == VLAN_TABLE_FLAG_ONLY_TAG) or (flag == VLAN_TABLE_FLAG_ONLY_BOTH):
556 match = ofp.match()
557 match.oxm_list.append(ofp.oxm.in_port(of_port))
558 match.oxm_list.append(ofp.oxm.vlan_vid(0x1000+vlan_id))
macauley7f89d962015-08-06 18:13:48 +0800559
560 actions=[]
561 if vrf!=0:
562 actions.append(ofp.action.set_field(ofp.oxm.exp2ByteValue(exp_type=1, value=vrf)))
563
564 actions.append(ofp.action.set_field(ofp.oxm.vlan_vid(value=vlan_id)))
565
macauley0f91a3e2015-07-17 18:09:59 +0800566 request = ofp.message.flow_add(
567 table_id=10,
568 cookie=42,
569 match=match,
570 instructions=[
macauley53d90fe2015-08-04 17:34:22 +0800571 ofp.instruction.apply_actions(
macauley7f89d962015-08-06 18:13:48 +0800572 actions=actions
macauley53d90fe2015-08-04 17:34:22 +0800573 ),
574 ofp.instruction.goto_table(20)
macauley0f91a3e2015-07-17 18:09:59 +0800575 ],
576 priority=0)
577 logging.info("Add vlan %d tagged packets on port %d and go to table 20" %( vlan_id, of_port))
578 ctrl.message_send(request)
579
580 if (flag == VLAN_TABLE_FLAG_ONLY_UNTAG) or (flag == VLAN_TABLE_FLAG_ONLY_BOTH):
581 match = ofp.match()
582 match.oxm_list.append(ofp.oxm.in_port(of_port))
583 match.oxm_list.append(ofp.oxm.vlan_vid(0))
macauley53d90fe2015-08-04 17:34:22 +0800584
macauley7f89d962015-08-06 18:13:48 +0800585 actions=[]
586 if vrf!=0:
587 actions.append(ofp.action.set_field(ofp.oxm.exp2ByteValue(exp_type=1, value=vrf)))
588
589 actions.append(ofp.action.set_field(ofp.oxm.vlan_vid(0x1000+vlan_id)))
590
macauley0f91a3e2015-07-17 18:09:59 +0800591 request = ofp.message.flow_add(
592 table_id=10,
593 cookie=42,
594 match=match,
595 instructions=[
596 ofp.instruction.apply_actions(
macauley7f89d962015-08-06 18:13:48 +0800597 actions=actions
macauley0f91a3e2015-07-17 18:09:59 +0800598 ),
599 ofp.instruction.goto_table(20)
600 ],
601 priority=0)
602 logging.info("Add vlan %d untagged packets on port %d and go to table 20" % (vlan_id, of_port))
603 ctrl.message_send(request)
604
605 if send_barrier:
606 do_barrier(ctrl)
607
608 return request
macauley15909e72015-07-17 15:58:57 +0800609
macauley97557232015-07-16 17:28:07 +0800610def add_bridge_flow(ctrl, dst_mac, vlanid, group_id, send_barrier=False):
611 match = ofp.match()
castroflavio21894482015-12-08 15:29:55 -0500612 priority=500
macauleyfddc4662015-07-27 17:40:30 +0800613 if dst_mac!=None:
castroflavio21894482015-12-08 15:29:55 -0500614 priority=1000
macauleyfddc4662015-07-27 17:40:30 +0800615 match.oxm_list.append(ofp.oxm.eth_dst(dst_mac))
616
macauley97557232015-07-16 17:28:07 +0800617 match.oxm_list.append(ofp.oxm.vlan_vid(0x1000+vlanid))
macauleyfddc4662015-07-27 17:40:30 +0800618
macauley97557232015-07-16 17:28:07 +0800619 request = ofp.message.flow_add(
620 table_id=50,
621 cookie=42,
622 match=match,
623 instructions=[
624 ofp.instruction.write_actions(
625 actions=[
626 ofp.action.group(group_id)]),
627 ofp.instruction.goto_table(60)
628 ],
629 buffer_id=ofp.OFP_NO_BUFFER,
castroflavio21894482015-12-08 15:29:55 -0500630 priority=priority)
macauley97557232015-07-16 17:28:07 +0800631
632 logging.info("Inserting Brdige flow vlan %d, mac %s", vlanid, dst_mac)
633 ctrl.message_send(request)
634
635 if send_barrier:
macauley15909e72015-07-17 15:58:57 +0800636 do_barrier(ctrl)
637
macauley0f91a3e2015-07-17 18:09:59 +0800638 return request
macauleyfddc4662015-07-27 17:40:30 +0800639
640def add_overlay_bridge_flow(ctrl, dst_mac, vnid, group_id, is_group=True, send_barrier=False):
641 match = ofp.match()
642 if dst_mac!=None:
643 match.oxm_list.append(ofp.oxm.eth_dst(dst_mac))
644
645 match.oxm_list.append(ofp.oxm.tunnel_id(vnid))
646 if is_group == True:
647 actions=[ofp.action.group(group_id)]
648 else:
649 actions=[ofp.action.output(group_id)]
650
651 request = ofp.message.flow_add(
652 table_id=50,
653 cookie=42,
654 match=match,
655 instructions=[
656 ofp.instruction.write_actions(
657 actions=actions),
658 ofp.instruction.goto_table(60)
659 ],
660 buffer_id=ofp.OFP_NO_BUFFER,
661 priority=1000)
662
663 logging.info("Inserting Brdige flow vnid %d, mac %s", vnid, dst_mac)
664 ctrl.message_send(request)
665
666 if send_barrier:
667 do_barrier(ctrl)
668
669 return request
macauley0f91a3e2015-07-17 18:09:59 +0800670
macauley_cheng6b133662015-11-09 13:52:39 +0800671def add_termination_flow(ctrl, in_port, eth_type, dst_mac, vlanid, goto_table=None, send_barrier=False):
macauley0f91a3e2015-07-17 18:09:59 +0800672 match = ofp.match()
macauley0f91a3e2015-07-17 18:09:59 +0800673 match.oxm_list.append(ofp.oxm.eth_type(eth_type))
macauleyfddc4662015-07-27 17:40:30 +0800674 if dst_mac[0]&0x01 == 0x01:
675 match.oxm_list.append(ofp.oxm.eth_dst_masked(dst_mac, [0xff, 0xff, 0xff, 0x80, 0x00, 0x00]))
676 goto_table=40
677 else:
macauley53d90fe2015-08-04 17:34:22 +0800678 if in_port!=0:
679 match.oxm_list.append(ofp.oxm.in_port(in_port))
macauleyfddc4662015-07-27 17:40:30 +0800680 match.oxm_list.append(ofp.oxm.eth_dst(dst_mac))
681 match.oxm_list.append(ofp.oxm.vlan_vid(0x1000+vlanid))
macauley_cheng6b133662015-11-09 13:52:39 +0800682 if goto_table == None:
683 goto_table=30
macauley0f91a3e2015-07-17 18:09:59 +0800684
685 request = ofp.message.flow_add(
686 table_id=20,
687 cookie=42,
688 match=match,
689 instructions=[
690 ofp.instruction.goto_table(goto_table)
691 ],
692 buffer_id=ofp.OFP_NO_BUFFER,
693 priority=1)
694
695 logging.info("Inserting termination flow inport %d, eth_type %lx, vlan %d, mac %s", in_port, eth_type, vlanid, dst_mac)
696 ctrl.message_send(request)
697
698 if send_barrier:
699 do_barrier(ctrl)
700
701 return request
702
macauley53d90fe2015-08-04 17:34:22 +0800703def add_unicast_routing_flow(ctrl, eth_type, dst_ip, mask, action_group_id, vrf=0, send_barrier=False):
macauley0f91a3e2015-07-17 18:09:59 +0800704 match = ofp.match()
705 match.oxm_list.append(ofp.oxm.eth_type(eth_type))
macauley53d90fe2015-08-04 17:34:22 +0800706 if vrf != 0:
707 match.oxm_list.append(ofp.oxm.exp2ByteValue(ofp.oxm.OFDPA_EXP_TYPE_VRF, vrf))
708
macauleyf8b1acd2015-07-23 15:13:13 +0800709 if mask!=0:
710 match.oxm_list.append(ofp.oxm.ipv4_dst_masked(dst_ip, mask))
711 else:
712 match.oxm_list.append(ofp.oxm.ipv4_dst(dst_ip))
macauley0f91a3e2015-07-17 18:09:59 +0800713
macauley53d90fe2015-08-04 17:34:22 +0800714
macauley0f91a3e2015-07-17 18:09:59 +0800715 request = ofp.message.flow_add(
716 table_id=30,
717 cookie=42,
718 match=match,
719 instructions=[
720 ofp.instruction.write_actions(
721 actions=[ofp.action.group(action_group_id)]),
722 ofp.instruction.goto_table(60)
723 ],
724 buffer_id=ofp.OFP_NO_BUFFER,
725 priority=1)
726
727 logging.info("Inserting unicast routing flow eth_type %lx, dip %ld",eth_type, dst_ip)
728 ctrl.message_send(request)
729
730 if send_barrier:
731 do_barrier(ctrl)
732
macauleyfddc4662015-07-27 17:40:30 +0800733 return request
Flavio Castrod8f8af22015-12-02 18:19:26 -0500734
Flavio Castro167f5bd2015-12-02 19:33:53 -0500735def add_mpls_flow(ctrl, action_group_id, label=100 ,ethertype=0x0800, bos=1, send_barrier=False):
Flavio Castrod8f8af22015-12-02 18:19:26 -0500736 match = ofp.match()
737 match.oxm_list.append(ofp.oxm.eth_type(0x8847))
738 match.oxm_list.append(ofp.oxm.mpls_label(label))
739 match.oxm_list.append(ofp.oxm.mpls_bos(bos))
740 actions = [ofp.action.dec_mpls_ttl(),
741 ofp.action.copy_ttl_in(),
742 ofp.action.pop_mpls(ethertype)]
743 request = ofp.message.flow_add(
744 table_id=24,
745 cookie=43,
746 match=match,
747 instructions=[
748 ofp.instruction.apply_actions(
749 actions=actions
750 ),
751 ofp.instruction.write_actions(
752 actions=[ofp.action.group(action_group_id)]),
753 ofp.instruction.goto_table(60)
754 ],
755 buffer_id=ofp.OFP_NO_BUFFER,
756 priority=1)
757
758 logging.info("Inserting MPLS flow , label %ld", label)
759 ctrl.message_send(request)
760
761 if send_barrier:
762 do_barrier(ctrl)
763
764 return request
765
766
macauleyfddc4662015-07-27 17:40:30 +0800767def add_mcast4_routing_flow(ctrl, vlan_id, src_ip, src_ip_mask, dst_ip, action_group_id, send_barrier=False):
768 match = ofp.match()
769 match.oxm_list.append(ofp.oxm.eth_type(0x0800))
770 match.oxm_list.append(ofp.oxm.vlan_vid(vlan_id))
771 if src_ip_mask!=0:
772 match.oxm_list.append(ofp.oxm.ipv4_src_masked(src_ip, src_ip_mask))
773 else:
774 match.oxm_list.append(ofp.oxm.ipv4_src(src_ip))
775
776 match.oxm_list.append(ofp.oxm.ipv4_dst(dst_ip))
777
778 request = ofp.message.flow_add(
779 table_id=40,
780 cookie=42,
781 match=match,
782 instructions=[
783 ofp.instruction.write_actions(
784 actions=[ofp.action.group(action_group_id)]),
785 ofp.instruction.goto_table(60)
786 ],
787 buffer_id=ofp.OFP_NO_BUFFER,
788 priority=1)
789
790 logging.info("Inserting mcast routing flow eth_type %lx, dip %lx, sip %lx, sip_mask %lx",0x0800, dst_ip, src_ip, src_ip_mask)
791 ctrl.message_send(request)
792
793 if send_barrier:
794 do_barrier(ctrl)
795
796 return request
macauley_cheng6b133662015-11-09 13:52:39 +0800797
798#dpctl tcp:192.168.1.1:6633 flow-mod table=28,cmd=add,prio=281 eth_type=0x800,ip_dst=100.0.0.1,ip_proto=6,tcp_dst=5000 write:set_field=ip_dst:10.0.0.1,set_field=tcp_dst:2000,group=0x71000001 goto:60
macauley_chengeffc20a2015-11-09 16:14:56 +0800799def add_dnat_flow(ctrl, eth_type, ip_dst, ip_proto, tcp_dst, set_ip_dst, set_tcp_dst, action_group_id):
macauley_cheng6b133662015-11-09 13:52:39 +0800800 match = ofp.match()
801 match.oxm_list.append(ofp.oxm.eth_type(eth_type))
802 match.oxm_list.append(ofp.oxm.ipv4_dst(ip_dst))
803 match.oxm_list.append(ofp.oxm.ip_proto(ip_proto))
804 match.oxm_list.append(ofp.oxm.tcp_dst(tcp_dst))
805
806 request = ofp.message.flow_add(
807 table_id=28,
808 cookie=42,
809 match=match,
810 instructions=[
811 ofp.instruction.write_actions(
812 actions=[ofp.action.set_field(ofp.oxm.ipv4_dst(set_ip_dst)),
813 ofp.action.set_field(ofp.oxm.tcp_dst(set_tcp_dst)),
814 ofp.action.group(action_group_id)]),
815 ofp.instruction.goto_table(60)
816 ],
817 buffer_id=ofp.OFP_NO_BUFFER,
818 priority=1)
819 logging.info("Inserting DNAT flow eth_type %lx, dip %lx, ip_proto %ld, tcp_dst %ld, SetFeild: Dip %lx, tcp_dst %ld, action_gorup=%lx",eth_type, ip_dst, ip_proto, tcp_dst, set_ip_dst, set_tcp_dst, action_group_id)
820 ctrl.message_send(request)
821 return request
macauley_chengeffc20a2015-11-09 16:14:56 +0800822
823#dpctl tcp:192.168.1.1:6633 flow-mod table=29,cmd=add,prio=291 eth_type=0x800,ip_src=10.0.0.1,ip_proto=6,tcp_src=2000 write:set_field=ip_src:100.0.0.1,set_field=tcp_src:5000 goto:30
824def add_snat_flow(ctrl, eth_type, ip_src, ip_proto, tcp_src, set_ip_src, set_tcp_src):
825 match = ofp.match()
826 match.oxm_list.append(ofp.oxm.eth_type(eth_type))
827 match.oxm_list.append(ofp.oxm.ipv4_src(ip_src))
828 match.oxm_list.append(ofp.oxm.ip_proto(ip_proto))
829 match.oxm_list.append(ofp.oxm.tcp_src(tcp_src))
830
831 request = ofp.message.flow_add(
832 table_id=29,
833 cookie=42,
834 match=match,
835 instructions=[
836 ofp.instruction.write_actions(
837 actions=[ofp.action.set_field(ofp.oxm.ipv4_src(set_ip_src)),
838 ofp.action.set_field(ofp.oxm.tcp_src(set_tcp_src))]),
839 ofp.instruction.goto_table(30)
840 ],
841 buffer_id=ofp.OFP_NO_BUFFER,
842 priority=1)
843 logging.info("Inserting DNAT flow eth_type %lx, sip %lx, ip_proto %ld, tcp_src %ld, SetFeild: sip %lx, tcp_src %ld",eth_type, ip_src, ip_proto, tcp_src, set_ip_src, set_tcp_src)
844 ctrl.message_send(request)
845 return request
macauley_cheng6b133662015-11-09 13:52:39 +0800846
macauleyfddc4662015-07-27 17:40:30 +0800847def get_vtap_lport_config_xml(dp_id, lport, phy_port, vlan, vnid, operation='merge'):
848 """
849 Command Example:
850 of-agent vtap 10001 ethernet 1/1 vid 1
851 of-agent vtp 10001 vni 10
852 """
853 if vlan != 0:
854 config_vtap_xml="""
855 <config>
856 <capable-switch xmlns="urn:onf:of111:config:yang" xmlns:xc="urn:ietf:params:xml:ns:netconf:base:1.0">
857 <id>capable-switch-1</id>
858 <resources>
859 <port xc:operation="OPERATION">
860 <resource-id >LPORT</resource-id>
861 <features>
862 <current>
863 <rate>10Gb</rate>
864 <medium>fiber</medium>
865 <pause>symmetric</pause>
866 </current>
867 <advertised>
868 <rate>10Gb</rate>
869 <rate>100Gb</rate>
870 <medium>fiber</medium>
871 <pause>symmetric</pause>
872 </advertised>
873 <supported>
874 <rate>10Gb</rate>
875 <rate>100Gb</rate>
876 <medium>fiber</medium>
877 <pause>symmetric</pause>
878 </supported>
879 <advertised-peer>
880 <rate>10Gb</rate>
881 <rate>100Gb</rate>
882 <medium>fiber</medium>
883 <pause>symmetric</pause>
884 </advertised-peer>
885 </features>
886 <ofdpa10:vtap xmlns:ofdpa10="urn:bcm:ofdpa10:accton01" xc:operation="OPERATION">
887 <ofdpa10:phy-port>PHY_PORT</ofdpa10:phy-port>
888 <ofdpa10:vid>VLAN_ID</ofdpa10:vid>
889 <ofdpa10:vni>VNID</ofdpa10:vni>
890 </ofdpa10:vtap>
891 </port>
892 </resources>
893 <logical-switches>
894 <switch>
895 <id>DATAPATH_ID</id>
896 <datapath-id>DATAPATH_ID</datapath-id>
897 <resources>
898 <port xc:operation="OPERATION">LPORT</port>
899 </resources>
900 </switch>
901 </logical-switches>
902 </capable-switch>
903 </config>
904 """
905 else:
906 config_vtap_xml="""
907 <config>
908 <capable-switch xmlns="urn:onf:of111:config:yang" xmlns:xc="urn:ietf:params:xml:ns:netconf:base:1.0">
909 <id>capable-switch-1</id>
910 <resources>
911 <port xc:operation="OPERATION">
912 <resource-id >LPORT</resource-id>
913 <features>
914 <current>
915 <rate>10Gb</rate>
916 <medium>fiber</medium>
917 <pause>symmetric</pause>
918 </current>
919 <advertised>
920 <rate>10Gb</rate>
921 <rate>100Gb</rate>
922 <medium>fiber</medium>
923 <pause>symmetric</pause>
924 </advertised>
925 <supported>
926 <rate>10Gb</rate>
927 <rate>100Gb</rate>
928 <medium>fiber</medium>
929 <pause>symmetric</pause>
930 </supported>
931 <advertised-peer>
932 <rate>10Gb</rate>
933 <rate>100Gb</rate>
934 <medium>fiber</medium>
935 <pause>symmetric</pause>
936 </advertised-peer>
937 </features>
938 <ofdpa10:vtap xmlns:ofdpa10="urn:bcm:ofdpa10:accton01" xc:operation="OPERATION">
939 <ofdpa10:phy-port>PHY_PORT</ofdpa10:phy-port>
940 <ofdpa10:vni>VNID</ofdpa10:vni>
941 </ofdpa10:vtap>
942 </port>
943 </resources>
944 <logical-switches>
945 <switch>
946 <id>DATAPATH_ID</id>
947 <datapath-id>DATAPATH_ID</datapath-id>
948 <resources>
949 <port xc:operation="OPERATION">LPORT</port>
950 </resources>
951 </switch>
952 </logical-switches>
953 </capable-switch>
954 </config>
955 """
956 str_datapath_id_f= "{:016x}".format(dp_id)
957 str_datapath_id=':'.join([str_datapath_id_f[i:i+2] for i in range(0, len(str_datapath_id_f), 2)])
958 config_vtap_xml=config_vtap_xml.replace("DATAPATH_ID", str_datapath_id)
macauley25999cf2015-08-07 17:03:24 +0800959 config_vtap_xml=config_vtap_xml.replace("LPORT", str(int(lport)))
macauleyfddc4662015-07-27 17:40:30 +0800960 config_vtap_xml=config_vtap_xml.replace("PHY_PORT", str(phy_port))
961 config_vtap_xml=config_vtap_xml.replace("VLAN_ID", str(vlan))
962 config_vtap_xml=config_vtap_xml.replace("VNID", str(vnid))
963 config_vtap_xml=config_vtap_xml.replace("OPERATION", str(operation))
964 return config_vtap_xml
965
966def get_vtep_lport_config_xml(dp_id, lport, src_ip, dst_ip, next_hop_id, vnid, udp_src_port=6633, ttl=25, operation='merge'):
967 """
968 Command Example:
969 of-agent vtep 10002 source user-input-src-ip destination user-input-dst-ip udp-source-port 6633 nexthop 2 ttl 25
970 of-agent vtp 10001 vni 10
971 """
972
973 config_vtep_xml="""
974 <config>
975 <capable-switch xmlns="urn:onf:of111:config:yang" xmlns:xc="urn:ietf:params:xml:ns:netconf:base:1.0">
976 <id>capable-switch-1</id>
977 <resources>
978 <port xc:operation="OPERATION">
979 <resource-id>LPORT</resource-id>
980 <features>
981 <current>
982 <rate>10Gb</rate>
983 <medium>fiber</medium>
984 <pause>symmetric</pause>
985 </current>
986 <advertised>
987 <rate>10Gb</rate>
988 <rate>100Gb</rate>
989 <medium>fiber</medium>
990 <pause>symmetric</pause>
991 </advertised>
992 <supported>
993 <rate>10Gb</rate>
994 <rate>100Gb</rate>
995 <medium>fiber</medium>
996 <pause>symmetric</pause>
997 </supported>
998 <advertised-peer>
999 <rate>10Gb</rate>
1000 <rate>100Gb</rate>
1001 <medium>fiber</medium>
1002 <pause>symmetric</pause>
1003 </advertised-peer>
1004 </features>
1005 <ofdpa10:vtep xmlns:ofdpa10="urn:bcm:ofdpa10:accton01">
1006 <ofdpa10:src-ip>SRC_IP</ofdpa10:src-ip>
1007 <ofdpa10:dest-ip>DST_IP</ofdpa10:dest-ip>
1008 <ofdpa10:udp-src-port>UDP_SRC_PORT</ofdpa10:udp-src-port>
macauley25999cf2015-08-07 17:03:24 +08001009 <ofdpa10:vni xc:operation="OPERATION">
1010 <ofdpa10:id>VNID</ofdpa10:id>
1011 </ofdpa10:vni>
macauleyfddc4662015-07-27 17:40:30 +08001012 <ofdpa10:nexthop-id>NEXT_HOP_ID</ofdpa10:nexthop-id>
1013 <ofdpa10:ttl>TTL</ofdpa10:ttl>
1014 </ofdpa10:vtep>
1015 </port>
1016 </resources>
1017 <logical-switches>
1018 <switch>
1019 <id>DATAPATH_ID</id>
1020 <datapath-id>DATAPATH_ID</datapath-id>
1021 <resources>
1022 <port xc:operation="OPERATION">LPORT</port>
1023 </resources>
1024 </switch>
1025 </logical-switches>
1026 </capable-switch>
1027 </config>
1028 """
1029 str_datapath_id_f= "{:016x}".format(dp_id)
1030 str_datapath_id=':'.join([str_datapath_id_f[i:i+2] for i in range(0, len(str_datapath_id_f), 2)])
1031 config_vtep_xml=config_vtep_xml.replace("DATAPATH_ID", str_datapath_id)
macauley25999cf2015-08-07 17:03:24 +08001032 config_vtep_xml=config_vtep_xml.replace("LPORT", str(int(lport)))
macauleyfddc4662015-07-27 17:40:30 +08001033 config_vtep_xml=config_vtep_xml.replace("SRC_IP", str(src_ip))
1034 config_vtep_xml=config_vtep_xml.replace("DST_IP", str(dst_ip))
1035 config_vtep_xml=config_vtep_xml.replace("UDP_SRC_PORT", str(udp_src_port))
1036 config_vtep_xml=config_vtep_xml.replace("NEXT_HOP_ID", str(next_hop_id))
1037 config_vtep_xml=config_vtep_xml.replace("TTL", str(ttl))
1038 config_vtep_xml=config_vtep_xml.replace("VNID", str(vnid))
1039 config_vtep_xml=config_vtep_xml.replace("OPERATION", str(operation))
1040
1041 return config_vtep_xml
1042
1043def get_next_hop_config_xml(next_hop_id, dst_mac, phy_port, vlan, operation='merge'):
1044 #of-agent nexthop 2 destination user-input-dst-mac ethernet 1/2 vid 2
1045 config_nexthop_xml="""
1046 <config>
1047 <of11-config:capable-switch xmlns:of11-config="urn:onf:of111:config:yang" xmlns:xc="urn:ietf:params:xml:ns:netconf:base:1.0">
1048 <ofdpa10:next-hop xmlns:ofdpa10="urn:bcm:ofdpa10:accton01" xc:operation="OPERATION">
1049 <ofdpa10:id>NEXT_HOP_ID</ofdpa10:id>
1050 <ofdpa10:dest-mac>DST_MAC</ofdpa10:dest-mac>
1051 <ofdpa10:phy-port>PHY_PORT</ofdpa10:phy-port>
1052 <ofdpa10:vid>VLAN_ID</ofdpa10:vid>
1053 </ofdpa10:next-hop>
1054 </of11-config:capable-switch>
1055 </config>
1056 """
1057 config_nexthop_xml=config_nexthop_xml.replace("VLAN_ID", str(vlan))
1058 config_nexthop_xml=config_nexthop_xml.replace("PHY_PORT", str(phy_port))
1059 config_nexthop_xml=config_nexthop_xml.replace("NEXT_HOP_ID", str(next_hop_id))
1060 config_nexthop_xml=config_nexthop_xml.replace("DST_MAC", str(dst_mac))
1061 config_nexthop_xml=config_nexthop_xml.replace("OPERATION", str(operation))
1062 return config_nexthop_xml
1063
1064def get_vni_config_xml(vni_id, mcast_ipv4, next_hop_id, operation='merge'):
1065 #of-agent vni 10 multicast 224.1.1.1 nexthop 20
1066 if mcast_ipv4!=None:
1067 config_vni_xml="""
1068 <config>
1069 <of11-config:capable-switch xmlns:of11-config="urn:onf:of111:config:yang" xmlns:xc="urn:ietf:params:xml:ns:netconf:base:1.0">
1070 <ofdpa10:vni xmlns:ofdpa10="urn:bcm:ofdpa10:accton01" xc:operation="OPERATION">
1071 <ofdpa10:id>VNID</ofdpa10:id>
1072 <ofdpa10:vni-multicast-group>MCAST_IP</ofdpa10:vni-multicast-group>
1073 <ofdpa10:multicast-group-nexthop-id>NEXT_HOP_ID</ofdpa10:multicast-group-nexthop-id>
1074 </ofdpa10:vni>
1075 </of11-config:capable-switch>
1076 </config>
1077 """
1078 config_vni_xml=config_vni_xml.replace("NEXT_HOP_ID", str(next_hop_id))
1079 config_vni_xml=config_vni_xml.replace("MCAST_IP", str(mcast_ipv4))
1080 else:
1081 config_vni_xml="""
1082 <config>
1083 <of11-config:capable-switch xmlns:of11-config="urn:onf:of111:config:yang" xmlns:xc="urn:ietf:params:xml:ns:netconf:base:1.0">
1084 <ofdpa10:vni xmlns:ofdpa10="urn:bcm:ofdpa10:accton01" xc:operation="OPERATION">
1085 <ofdpa10:id>VNID</ofdpa10:id>
1086 </ofdpa10:vni>
1087 </of11-config:capable-switch>
1088 </config>
1089 """
1090
1091 config_vni_xml=config_vni_xml.replace("VNID", str(vni_id))
1092 config_vni_xml=config_vni_xml.replace("OPERATION", str(operation))
1093 return config_vni_xml
1094
1095def get_featureReplay(self):
1096 req = ofp.message.features_request()
1097 res, raw = self.controller.transact(req)
1098 self.assertIsNotNone(res, "Did not receive a response from the DUT.")
1099 self.assertEqual(res.type, ofp.OFPT_FEATURES_REPLY,
1100 ("Unexpected packet type %d received in response to "
1101 "OFPT_FEATURES_REQUEST") % res.type)
1102 return res
1103
1104def send_edit_config(switch_ip, xml, target='runing'):
1105 NETCONF_ACCOUNT="netconfuser"
1106 NETCONF_PASSWD="netconfuser"
1107 with manager.connect_ssh(host=switch_ip, port=830, username=NETCONF_ACCOUNT, password=NETCONF_PASSWD, hostkey_verify=False ) as m:
1108 try:
1109 m.edit_config(target='running',
1110 config=xml,
1111 default_operation='merge',
1112 error_option='stop-on-error')
1113
1114 except Exception as e:
1115 logging.info("Fail to set xml %s", xml)
1116 return False
1117
1118 #return m.get_config(source='running').data_xml
1119 return True
1120
1121def send_delete_config(switch_ip, xml, target='runing'):
1122 NETCONF_ACCOUNT="netconfuser"
1123 NETCONF_PASSWD="netconfuser"
1124 with manager.connect_ssh(host=switch_ip, port=830, username=NETCONF_ACCOUNT, password=NETCONF_PASSWD, hostkey_verify=False ) as m:
1125 try:
1126 m.edit_config(target='running',
1127 config=xml,
1128 default_operation='delete',
1129 error_option='stop-on-error')
1130
1131 except Exception as e:
1132 logging.info("Fail to set xml %s", xml)
1133 return False
1134
1135 #return m.get_config(source='running').data_xml
1136 return True
1137
1138def get_edit_config(switch_ip, target='runing'):
1139 NETCONF_ACCOUNT="netconfuser"
1140 NETCONF_PASSWD="netconfuser"
1141 with manager.connect_ssh(host=switch_ip, port=830, username=NETCONF_ACCOUNT, password=NETCONF_PASSWD, hostkey_verify=False ) as m:
macauley6f6ceb22015-08-07 09:37:12 +08001142 return m.get_config(source='running').data_xml
macauleydbff3272015-07-30 14:07:16 +08001143
macauley_cheng67da9262015-08-31 15:18:41 +08001144
1145"""
1146MPLS
1147"""
1148
1149OFDPA_MPLS_SUBTYPE_SHIFT=24
1150OFDPA_MPLS_GROUP_SUBTYPE_L2_VPN_LABEL=1
1151OFDPA_MPLS_GROUP_SUBTYPE_L3_VPN_LABEL=2
1152OFDPA_MPLS_GROUP_SUBTYPE_TUNNEL_LABEL1=3
1153OFDPA_MPLS_GROUP_SUBTYPE_TUNNEL_LABEL2=4
1154OFDPA_MPLS_GROUP_SUBTYPE_SWAP_LABEL=5
1155OFDPA_MPLS_GROUP_SUBTYPE_FAST_FAILOVER_GROUP=6
1156OFDPA_MPLS_GROUP_SUBTYPE_ECMP=8
1157OFDPA_MPLS_GROUP_SUBTYPE_L2_TAG=10
1158
1159def encode_mpls_interface_group_id(subtype, index):
1160 index=index&0x00ffffff
1161 assert(subtype==0)
1162 return index + (9 << OFDPA_GROUP_TYPE_SHIFT)+(subtype<<OFDPA_MPLS_SUBTYPE_SHIFT)
1163
1164def encode_mpls_label_group_id(subtype, index):
1165 index=index&0x00ffffff
1166 assert(subtype <=5 or subtype==0)
1167 #1: l2 vpn label
1168 #2: l3 vpn label
1169 #3: mpls tunnel label 1
1170 #4: mpls tunnel lable 2
1171 #5: mpls swap label
1172 return index + (9 << OFDPA_GROUP_TYPE_SHIFT)+(subtype<<OFDPA_MPLS_SUBTYPE_SHIFT)
1173
1174def encode_mpls_forwarding_group_id(subtype, index):
1175 index=index&0x00ffffff
1176 assert(subtype==6 or subtype==8 or subtype==10)
1177 return index + (10 << OFDPA_GROUP_TYPE_SHIFT)+(subtype<<OFDPA_MPLS_SUBTYPE_SHIFT)
1178
1179
1180def add_mpls_intf_group(ctrl, ref_gid, dst_mac, src_mac, vid, index, subtype=0):
1181 action=[]
1182 action.append(ofp.action.set_field(ofp.oxm.eth_src(src_mac)))
1183 action.append(ofp.action.set_field(ofp.oxm.eth_dst(dst_mac)))
1184 action.append(ofp.action.set_field(ofp.oxm.vlan_vid(vid)))
1185 action.append(ofp.action.group(ref_gid))
1186
1187 buckets = [ofp.bucket(actions=action)]
1188
1189 mpls_group_id =encode_mpls_interface_group_id(subtype, index)
1190 request = ofp.message.group_add(group_type=ofp.OFPGT_INDIRECT,
1191 group_id=mpls_group_id,
1192 buckets=buckets
1193 )
1194 ctrl.message_send(request)
1195 return mpls_group_id, request
1196
1197def add_mpls_label_group(ctrl, subtype, index, ref_gid,
1198 lmep_id=-1,
1199 qos_index=-1,
1200 push_l2_header=False,
1201 push_vlan=False,
1202 push_mpls_header=False,
1203 push_cw=False,
1204 set_mpls_label=None,
1205 set_bos=None,
1206 set_tc=None,
1207 set_tc_from_table=False,
1208 cpy_tc_outward=False,
1209 set_ttl=None,
1210 cpy_ttl_outward=False,
1211 oam_lm_tx_count=False,
1212 set_pri_from_table=False
1213 ):
1214 """
1215 @ref_gid: only can be mpls intf group or mpls tunnel label 1/2 group
1216 """
1217 action=[]
1218
1219 if push_vlan== True:
1220 action.append(ofp.action.push_vlan(0x8100))
1221 if push_mpls_header== True:
1222 action.append(ofp.action.push_mpls(0x8847))
1223 if set_mpls_label != None:
1224 action.append(ofp.action.set_field(ofp.oxm.mpls_label(set_mpls_label)))
1225 if set_bos != None:
1226 action.append(ofp.action.set_field(ofp.oxm.mpls_bos(set_bos)))
1227 if set_tc != None:
1228 assert(set_tc_from_table==False)
1229 action.append(ofp.action.set_field(ofp.oxm.mpls_tc(set_tc)))
1230 if set_ttl != None:
1231 action.append(ofp.action.set_mpls_ttl(set_ttl))
1232 if cpy_ttl_outward == True:
1233 action.append(ofp.action.copy_ttl_out())
1234 """
1235 ofdpa experimenter
1236 """
1237 if push_l2_header== True:
1238 action.append(ofp.action.ofdpa_push_l2_header())
1239 if set_tc_from_table== True:
1240 assert(qos_index>=0)
1241 assert(set_tc == None)
1242 action.append(ofp.action.ofdpa_set_tc_from_table(qos_index))
1243 if cpy_tc_outward == True:
1244 action.append(ofp.action.ofdpa_copy_tc_out())
1245 if oam_lm_tx_count == True:
1246 assert(qos_index>=0 and lmep_id>=0)
1247 action.append(ofp.action.ofdpa_oam_lm_tx_count(lmep_id, qos_index))
1248 if set_pri_from_table == True:
1249 assert(qos_index>=0)
1250 action.append(ofp.action.ofdpa_set_qos_from_table(qos_index))
1251 if push_cw == True:
1252 action.append(ofp.action.ofdpa_push_cw())
1253
1254 action.append(ofp.action.group(ref_gid))
1255 buckets = [ofp.bucket(actions=action)]
1256
1257 mpls_group_id = encode_mpls_label_group_id(subtype, index)
1258 request = ofp.message.group_add(group_type=ofp.OFPGT_INDIRECT,
1259 group_id=mpls_group_id,
1260 buckets=buckets
1261 )
1262 ctrl.message_send(request)
1263
1264 return mpls_group_id, request
1265
1266def add_mpls_forwarding_group(ctrl, subtype, index, ref_gids,
1267 watch_port=None,
macauley_chengd17ce512015-08-31 17:45:51 +08001268 watch_group=ofp.OFPP_ANY,
macauley_cheng67da9262015-08-31 15:18:41 +08001269 push_vlan=None,
macauley_chengd17ce512015-08-31 17:45:51 +08001270 pop_vlan=None,
macauley_cheng67da9262015-08-31 15:18:41 +08001271 set_vid=None):
1272 assert(subtype == OFDPA_MPLS_GROUP_SUBTYPE_FAST_FAILOVER_GROUP
1273 or subtype == OFDPA_MPLS_GROUP_SUBTYPE_ECMP
1274 or subtype == OFDPA_MPLS_GROUP_SUBTYPE_L2_TAG)
macauley_chengd17ce512015-08-31 17:45:51 +08001275
macauley_cheng67da9262015-08-31 15:18:41 +08001276 buckets=[]
1277 if subtype == OFDPA_MPLS_GROUP_SUBTYPE_FAST_FAILOVER_GROUP:
macauley_chengd17ce512015-08-31 17:45:51 +08001278 group_type = ofp.OFPGT_FF
macauley_cheng67da9262015-08-31 15:18:41 +08001279 for gid in ref_gids:
macauley_chengd17ce512015-08-31 17:45:51 +08001280 action=[]
1281 action.append(ofp.action.group(gid))
1282 buckets.append(ofp.bucket(watch_port=watch_port, watch_group=watch_group,actions=action))
1283
macauley_cheng67da9262015-08-31 15:18:41 +08001284 elif subtype == OFDPA_MPLS_GROUP_SUBTYPE_ECMP:
1285 group_type = ofp.OFPGT_SELECT
1286 for gid in ref_gids:
macauley_chengd17ce512015-08-31 17:45:51 +08001287 action=[]
macauley_cheng67da9262015-08-31 15:18:41 +08001288 action.append(ofp.action.group(gid))
1289 buckets.append(ofp.bucket(actions=action))
macauley_chengd17ce512015-08-31 17:45:51 +08001290
macauley_cheng67da9262015-08-31 15:18:41 +08001291 elif subtype == OFDPA_MPLS_GROUP_SUBTYPE_L2_TAG:
1292 group_type = ofp.OFPGT_INDIRECT
macauley_chengd17ce512015-08-31 17:45:51 +08001293 action=[]
macauley_cheng67da9262015-08-31 15:18:41 +08001294 if set_vid!=None:
1295 action.append(ofp.action.set_field(ofp.oxm.vlan_vid(set_vid)))
1296 if push_vlan!=None:
1297 action.append(ofp.action.push_vlan(push_vlan))
1298 if pop_vlan!=None:
macauley_chengd17ce512015-08-31 17:45:51 +08001299 action.append(ofp.action.pop_vlan())
macauley_cheng67da9262015-08-31 15:18:41 +08001300 action.append(ofp.action.group(ref_gids[0]))
1301 buckets.append(ofp.bucket(actions=action))
macauley_chengd17ce512015-08-31 17:45:51 +08001302
1303 mpls_group_id = encode_mpls_forwarding_group_id(subtype, index)
macauley_cheng67da9262015-08-31 15:18:41 +08001304 request = ofp.message.group_add(group_type=group_type,
macauley_cheng67da9262015-08-31 15:18:41 +08001305 group_id=mpls_group_id,
1306 buckets=buckets
1307 )
1308 ctrl.message_send(request)
1309 return mpls_group_id, request
macauley_chengd17ce512015-08-31 17:45:51 +08001310
1311
macauley_cheng67da9262015-08-31 15:18:41 +08001312"""
1313dislay
1314"""
macauleydbff3272015-07-30 14:07:16 +08001315def print_current_table_flow_stat(ctrl, table_id=0xff):
1316 stat_req=ofp.message.flow_stats_request()
1317 response, pkt = ctrl.transact(stat_req)
1318 if response == None:
1319 print "no response"
1320 return None
1321 print len(response.entries)
1322 for obj in response.entries:
1323 print "match ", obj.match
1324 print "cookie", obj.cookie
1325 print "priority", obj.priority
1326 print "idle_timeout", obj.idle_timeout
1327 print "hard_timeout", obj.hard_timeout
1328 #obj.actions
Flavio Castro167f5bd2015-12-02 19:33:53 -05001329 print "packet count: %lx"%obj.packet_count