blob: 9ac96c8a8a0f8d6baf75f25d1b2db3207452a7d9 [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
macauley97557232015-07-16 17:28:07 +0800131def add_l2_interface_grouop(ctrl, ports, vlan_id=1, is_tagged=False, send_barrier=False):
132 # 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
macauley0f91a3e2015-07-17 18:09:59 +0800166def add_one_l2_interface_grouop(ctrl, port, vlan_id=1, is_tagged=False, send_barrier=False):
167 # 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
391
macauleyfddc4662015-07-27 17:40:30 +0800392
macauley97557232015-07-16 17:28:07 +0800393def add_vlan_table_flow(ctrl, ports, vlan_id=1, flag=VLAN_TABLE_FLAG_ONLY_BOTH, send_barrier=False):
394 # table 10: vlan
395 # goto to table 20
macauley15909e72015-07-17 15:58:57 +0800396 msgs=[]
macauley97557232015-07-16 17:28:07 +0800397 for of_port in ports:
398 if (flag == VLAN_TABLE_FLAG_ONLY_TAG) or (flag == VLAN_TABLE_FLAG_ONLY_BOTH):
399 match = ofp.match()
400 match.oxm_list.append(ofp.oxm.in_port(of_port))
401 match.oxm_list.append(ofp.oxm.vlan_vid(0x1000+vlan_id))
402 request = ofp.message.flow_add(
403 table_id=10,
404 cookie=42,
405 match=match,
406 instructions=[
407 ofp.instruction.goto_table(20)
408 ],
409 priority=0)
410 logging.info("Add vlan %d tagged packets on port %d and go to table 20" %( vlan_id, of_port))
411 ctrl.message_send(request)
412
413 if (flag == VLAN_TABLE_FLAG_ONLY_UNTAG) or (flag == VLAN_TABLE_FLAG_ONLY_BOTH):
414 match = ofp.match()
415 match.oxm_list.append(ofp.oxm.in_port(of_port))
macauley_cheng6b311612015-09-04 11:32:27 +0800416 match.oxm_list.append(ofp.oxm.vlan_vid_masked(0, 0xfff))
macauley97557232015-07-16 17:28:07 +0800417 request = ofp.message.flow_add(
418 table_id=10,
419 cookie=42,
420 match=match,
421 instructions=[
422 ofp.instruction.apply_actions(
423 actions=[
424 ofp.action.set_field(ofp.oxm.vlan_vid(0x1000+vlan_id))
425 ]
426 ),
427 ofp.instruction.goto_table(20)
428 ],
429 priority=0)
430 logging.info("Add vlan %d untagged packets on port %d and go to table 20" % (vlan_id, of_port))
431 ctrl.message_send(request)
macauley15909e72015-07-17 15:58:57 +0800432 msgs.append(request)
macauley97557232015-07-16 17:28:07 +0800433
434 if send_barrier:
435 do_barrier(ctrl)
436
macauley15909e72015-07-17 15:58:57 +0800437 return msgs
macauley_cheng6e6a6122015-11-16 14:19:18 +0800438
439def del_vlan_table_flow(ctrl, ports, vlan_id=1, flag=VLAN_TABLE_FLAG_ONLY_BOTH, send_barrier=False):
440 # table 10: vlan
441 # goto to table 20
442 msgs=[]
443 for of_port in ports:
444 if (flag == VLAN_TABLE_FLAG_ONLY_TAG) or (flag == VLAN_TABLE_FLAG_ONLY_BOTH):
445 match = ofp.match()
446 match.oxm_list.append(ofp.oxm.in_port(of_port))
447 match.oxm_list.append(ofp.oxm.vlan_vid(0x1000+vlan_id))
448 request = ofp.message.flow_delete(
449 table_id=10,
450 cookie=42,
451 match=match,
452 priority=0)
453 logging.info("Del vlan %d tagged packets on port %d and go to table 20" %( vlan_id, of_port))
454 ctrl.message_send(request)
macauley0f91a3e2015-07-17 18:09:59 +0800455
macauley_cheng6e6a6122015-11-16 14:19:18 +0800456 if (flag == VLAN_TABLE_FLAG_ONLY_UNTAG) or (flag == VLAN_TABLE_FLAG_ONLY_BOTH):
457 match = ofp.match()
458 match.oxm_list.append(ofp.oxm.in_port(of_port))
459 match.oxm_list.append(ofp.oxm.vlan_vid_masked(0, 0xfff))
460 request = ofp.message.flow_delete(
461 table_id=10,
462 cookie=42,
463 match=match,
464 priority=0)
465 logging.info("Del vlan %d untagged packets on port %d and go to table 20" % (vlan_id, of_port))
466 ctrl.message_send(request)
467 msgs.append(request)
468
469 if send_barrier:
470 do_barrier(ctrl)
471
472 return msgs
473
macauley_cheng6b311612015-09-04 11:32:27 +0800474def add_vlan_table_flow_pvid(ctrl, in_port, match_vid=None, pvid=1, send_barrier=False):
475 """it will tag pack as untagged packet wether it has tagg or not"""
476 match = ofp.match()
477 match.oxm_list.append(ofp.oxm.in_port(in_port))
478 actions=[]
479 if match_vid == None:
480 match.oxm_list.append(ofp.oxm.vlan_vid(0))
481 actions.append(ofp.action.set_field(ofp.oxm.vlan_vid(0x1000+pvid)))
482 goto_table=20
483 else:
484 match.oxm_list.append(ofp.oxm.vlan_vid_masked(0x1000+match_vid, 0x1fff))
485 actions.append(ofp.action.push_vlan(0x8100))
486 actions.append(ofp.action.set_field(ofp.oxm.vlan_vid(0x1000+pvid)))
487 goto_table=20
488
489 request = ofp.message.flow_add(
490 table_id=10,
491 cookie=42,
492 match=match,
493 instructions=[
494 ofp.instruction.apply_actions(actions=actions)
495 ,ofp.instruction.goto_table(goto_table)
496 ],
497 priority=0)
498 logging.info("Add PVID %d on port %d and go to table %ld" %( pvid, in_port, goto_table))
499 ctrl.message_send(request)
500
501 if send_barrier:
502 do_barrier(ctrl)
503
504def add_vlan_table_flow_allow_all_vlan(ctrl, in_port, send_barrier=False):
505 """it st flow allow all vlan tag on this port"""
506 match = ofp.match()
507 match.oxm_list.append(ofp.oxm.in_port(in_port))
508 match.oxm_list.append(ofp.oxm.vlan_vid_masked(0x1000, 0x1000))
509 request = ofp.message.flow_add(
510 table_id=10,
511 cookie=42,
512 match=match,
513 instructions=[
514 ofp.instruction.goto_table(20)
515 ],
516 priority=0)
517 logging.info("Add allow all vlan on port %d " %(in_port))
518 ctrl.message_send(request)
519
520
macauley53d90fe2015-08-04 17:34:22 +0800521def 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 +0800522 # table 10: vlan
523 # goto to table 20
524 if (flag == VLAN_TABLE_FLAG_ONLY_TAG) or (flag == VLAN_TABLE_FLAG_ONLY_BOTH):
525 match = ofp.match()
526 match.oxm_list.append(ofp.oxm.in_port(of_port))
527 match.oxm_list.append(ofp.oxm.vlan_vid(0x1000+vlan_id))
macauley7f89d962015-08-06 18:13:48 +0800528
529 actions=[]
530 if vrf!=0:
531 actions.append(ofp.action.set_field(ofp.oxm.exp2ByteValue(exp_type=1, value=vrf)))
532
533 actions.append(ofp.action.set_field(ofp.oxm.vlan_vid(value=vlan_id)))
534
macauley0f91a3e2015-07-17 18:09:59 +0800535 request = ofp.message.flow_add(
536 table_id=10,
537 cookie=42,
538 match=match,
539 instructions=[
macauley53d90fe2015-08-04 17:34:22 +0800540 ofp.instruction.apply_actions(
macauley7f89d962015-08-06 18:13:48 +0800541 actions=actions
macauley53d90fe2015-08-04 17:34:22 +0800542 ),
543 ofp.instruction.goto_table(20)
macauley0f91a3e2015-07-17 18:09:59 +0800544 ],
545 priority=0)
546 logging.info("Add vlan %d tagged packets on port %d and go to table 20" %( vlan_id, of_port))
547 ctrl.message_send(request)
548
549 if (flag == VLAN_TABLE_FLAG_ONLY_UNTAG) or (flag == VLAN_TABLE_FLAG_ONLY_BOTH):
550 match = ofp.match()
551 match.oxm_list.append(ofp.oxm.in_port(of_port))
552 match.oxm_list.append(ofp.oxm.vlan_vid(0))
macauley53d90fe2015-08-04 17:34:22 +0800553
macauley7f89d962015-08-06 18:13:48 +0800554 actions=[]
555 if vrf!=0:
556 actions.append(ofp.action.set_field(ofp.oxm.exp2ByteValue(exp_type=1, value=vrf)))
557
558 actions.append(ofp.action.set_field(ofp.oxm.vlan_vid(0x1000+vlan_id)))
559
macauley0f91a3e2015-07-17 18:09:59 +0800560 request = ofp.message.flow_add(
561 table_id=10,
562 cookie=42,
563 match=match,
564 instructions=[
565 ofp.instruction.apply_actions(
macauley7f89d962015-08-06 18:13:48 +0800566 actions=actions
macauley0f91a3e2015-07-17 18:09:59 +0800567 ),
568 ofp.instruction.goto_table(20)
569 ],
570 priority=0)
571 logging.info("Add vlan %d untagged packets on port %d and go to table 20" % (vlan_id, of_port))
572 ctrl.message_send(request)
573
574 if send_barrier:
575 do_barrier(ctrl)
576
577 return request
macauley15909e72015-07-17 15:58:57 +0800578
macauley97557232015-07-16 17:28:07 +0800579def add_bridge_flow(ctrl, dst_mac, vlanid, group_id, send_barrier=False):
580 match = ofp.match()
macauleyfddc4662015-07-27 17:40:30 +0800581 if dst_mac!=None:
582 match.oxm_list.append(ofp.oxm.eth_dst(dst_mac))
583
macauley97557232015-07-16 17:28:07 +0800584 match.oxm_list.append(ofp.oxm.vlan_vid(0x1000+vlanid))
macauleyfddc4662015-07-27 17:40:30 +0800585
macauley97557232015-07-16 17:28:07 +0800586 request = ofp.message.flow_add(
587 table_id=50,
588 cookie=42,
589 match=match,
590 instructions=[
591 ofp.instruction.write_actions(
592 actions=[
593 ofp.action.group(group_id)]),
594 ofp.instruction.goto_table(60)
595 ],
596 buffer_id=ofp.OFP_NO_BUFFER,
597 priority=1000)
598
599 logging.info("Inserting Brdige flow vlan %d, mac %s", vlanid, dst_mac)
600 ctrl.message_send(request)
601
602 if send_barrier:
macauley15909e72015-07-17 15:58:57 +0800603 do_barrier(ctrl)
604
macauley0f91a3e2015-07-17 18:09:59 +0800605 return request
macauleyfddc4662015-07-27 17:40:30 +0800606
607def add_overlay_bridge_flow(ctrl, dst_mac, vnid, group_id, is_group=True, send_barrier=False):
608 match = ofp.match()
609 if dst_mac!=None:
610 match.oxm_list.append(ofp.oxm.eth_dst(dst_mac))
611
612 match.oxm_list.append(ofp.oxm.tunnel_id(vnid))
613 if is_group == True:
614 actions=[ofp.action.group(group_id)]
615 else:
616 actions=[ofp.action.output(group_id)]
617
618 request = ofp.message.flow_add(
619 table_id=50,
620 cookie=42,
621 match=match,
622 instructions=[
623 ofp.instruction.write_actions(
624 actions=actions),
625 ofp.instruction.goto_table(60)
626 ],
627 buffer_id=ofp.OFP_NO_BUFFER,
628 priority=1000)
629
630 logging.info("Inserting Brdige flow vnid %d, mac %s", vnid, dst_mac)
631 ctrl.message_send(request)
632
633 if send_barrier:
634 do_barrier(ctrl)
635
636 return request
macauley0f91a3e2015-07-17 18:09:59 +0800637
macauley_cheng6b133662015-11-09 13:52:39 +0800638def add_termination_flow(ctrl, in_port, eth_type, dst_mac, vlanid, goto_table=None, send_barrier=False):
macauley0f91a3e2015-07-17 18:09:59 +0800639 match = ofp.match()
macauley0f91a3e2015-07-17 18:09:59 +0800640 match.oxm_list.append(ofp.oxm.eth_type(eth_type))
macauleyfddc4662015-07-27 17:40:30 +0800641 if dst_mac[0]&0x01 == 0x01:
642 match.oxm_list.append(ofp.oxm.eth_dst_masked(dst_mac, [0xff, 0xff, 0xff, 0x80, 0x00, 0x00]))
643 goto_table=40
644 else:
macauley53d90fe2015-08-04 17:34:22 +0800645 if in_port!=0:
646 match.oxm_list.append(ofp.oxm.in_port(in_port))
macauleyfddc4662015-07-27 17:40:30 +0800647 match.oxm_list.append(ofp.oxm.eth_dst(dst_mac))
648 match.oxm_list.append(ofp.oxm.vlan_vid(0x1000+vlanid))
macauley_cheng6b133662015-11-09 13:52:39 +0800649 if goto_table == None:
650 goto_table=30
macauley0f91a3e2015-07-17 18:09:59 +0800651
652 request = ofp.message.flow_add(
653 table_id=20,
654 cookie=42,
655 match=match,
656 instructions=[
657 ofp.instruction.goto_table(goto_table)
658 ],
659 buffer_id=ofp.OFP_NO_BUFFER,
660 priority=1)
661
662 logging.info("Inserting termination flow inport %d, eth_type %lx, vlan %d, mac %s", in_port, eth_type, vlanid, dst_mac)
663 ctrl.message_send(request)
664
665 if send_barrier:
666 do_barrier(ctrl)
667
668 return request
669
macauley53d90fe2015-08-04 17:34:22 +0800670def add_unicast_routing_flow(ctrl, eth_type, dst_ip, mask, action_group_id, vrf=0, send_barrier=False):
macauley0f91a3e2015-07-17 18:09:59 +0800671 match = ofp.match()
672 match.oxm_list.append(ofp.oxm.eth_type(eth_type))
macauley53d90fe2015-08-04 17:34:22 +0800673 if vrf != 0:
674 match.oxm_list.append(ofp.oxm.exp2ByteValue(ofp.oxm.OFDPA_EXP_TYPE_VRF, vrf))
675
macauleyf8b1acd2015-07-23 15:13:13 +0800676 if mask!=0:
677 match.oxm_list.append(ofp.oxm.ipv4_dst_masked(dst_ip, mask))
678 else:
679 match.oxm_list.append(ofp.oxm.ipv4_dst(dst_ip))
macauley0f91a3e2015-07-17 18:09:59 +0800680
macauley53d90fe2015-08-04 17:34:22 +0800681
macauley0f91a3e2015-07-17 18:09:59 +0800682 request = ofp.message.flow_add(
683 table_id=30,
684 cookie=42,
685 match=match,
686 instructions=[
687 ofp.instruction.write_actions(
688 actions=[ofp.action.group(action_group_id)]),
689 ofp.instruction.goto_table(60)
690 ],
691 buffer_id=ofp.OFP_NO_BUFFER,
692 priority=1)
693
694 logging.info("Inserting unicast routing flow eth_type %lx, dip %ld",eth_type, dst_ip)
695 ctrl.message_send(request)
696
697 if send_barrier:
698 do_barrier(ctrl)
699
macauleyfddc4662015-07-27 17:40:30 +0800700 return request
701
702def add_mcast4_routing_flow(ctrl, vlan_id, src_ip, src_ip_mask, dst_ip, action_group_id, send_barrier=False):
703 match = ofp.match()
704 match.oxm_list.append(ofp.oxm.eth_type(0x0800))
705 match.oxm_list.append(ofp.oxm.vlan_vid(vlan_id))
706 if src_ip_mask!=0:
707 match.oxm_list.append(ofp.oxm.ipv4_src_masked(src_ip, src_ip_mask))
708 else:
709 match.oxm_list.append(ofp.oxm.ipv4_src(src_ip))
710
711 match.oxm_list.append(ofp.oxm.ipv4_dst(dst_ip))
712
713 request = ofp.message.flow_add(
714 table_id=40,
715 cookie=42,
716 match=match,
717 instructions=[
718 ofp.instruction.write_actions(
719 actions=[ofp.action.group(action_group_id)]),
720 ofp.instruction.goto_table(60)
721 ],
722 buffer_id=ofp.OFP_NO_BUFFER,
723 priority=1)
724
725 logging.info("Inserting mcast routing flow eth_type %lx, dip %lx, sip %lx, sip_mask %lx",0x0800, dst_ip, src_ip, src_ip_mask)
726 ctrl.message_send(request)
727
728 if send_barrier:
729 do_barrier(ctrl)
730
731 return request
macauley_cheng6b133662015-11-09 13:52:39 +0800732
733#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 +0800734def 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 +0800735 match = ofp.match()
736 match.oxm_list.append(ofp.oxm.eth_type(eth_type))
737 match.oxm_list.append(ofp.oxm.ipv4_dst(ip_dst))
738 match.oxm_list.append(ofp.oxm.ip_proto(ip_proto))
739 match.oxm_list.append(ofp.oxm.tcp_dst(tcp_dst))
740
741 request = ofp.message.flow_add(
742 table_id=28,
743 cookie=42,
744 match=match,
745 instructions=[
746 ofp.instruction.write_actions(
747 actions=[ofp.action.set_field(ofp.oxm.ipv4_dst(set_ip_dst)),
748 ofp.action.set_field(ofp.oxm.tcp_dst(set_tcp_dst)),
749 ofp.action.group(action_group_id)]),
750 ofp.instruction.goto_table(60)
751 ],
752 buffer_id=ofp.OFP_NO_BUFFER,
753 priority=1)
754 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)
755 ctrl.message_send(request)
756 return request
macauley_chengeffc20a2015-11-09 16:14:56 +0800757
758#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
759def add_snat_flow(ctrl, eth_type, ip_src, ip_proto, tcp_src, set_ip_src, set_tcp_src):
760 match = ofp.match()
761 match.oxm_list.append(ofp.oxm.eth_type(eth_type))
762 match.oxm_list.append(ofp.oxm.ipv4_src(ip_src))
763 match.oxm_list.append(ofp.oxm.ip_proto(ip_proto))
764 match.oxm_list.append(ofp.oxm.tcp_src(tcp_src))
765
766 request = ofp.message.flow_add(
767 table_id=29,
768 cookie=42,
769 match=match,
770 instructions=[
771 ofp.instruction.write_actions(
772 actions=[ofp.action.set_field(ofp.oxm.ipv4_src(set_ip_src)),
773 ofp.action.set_field(ofp.oxm.tcp_src(set_tcp_src))]),
774 ofp.instruction.goto_table(30)
775 ],
776 buffer_id=ofp.OFP_NO_BUFFER,
777 priority=1)
778 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)
779 ctrl.message_send(request)
780 return request
macauley_cheng6b133662015-11-09 13:52:39 +0800781
macauleyfddc4662015-07-27 17:40:30 +0800782def get_vtap_lport_config_xml(dp_id, lport, phy_port, vlan, vnid, operation='merge'):
783 """
784 Command Example:
785 of-agent vtap 10001 ethernet 1/1 vid 1
786 of-agent vtp 10001 vni 10
787 """
788 if vlan != 0:
789 config_vtap_xml="""
790 <config>
791 <capable-switch xmlns="urn:onf:of111:config:yang" xmlns:xc="urn:ietf:params:xml:ns:netconf:base:1.0">
792 <id>capable-switch-1</id>
793 <resources>
794 <port xc:operation="OPERATION">
795 <resource-id >LPORT</resource-id>
796 <features>
797 <current>
798 <rate>10Gb</rate>
799 <medium>fiber</medium>
800 <pause>symmetric</pause>
801 </current>
802 <advertised>
803 <rate>10Gb</rate>
804 <rate>100Gb</rate>
805 <medium>fiber</medium>
806 <pause>symmetric</pause>
807 </advertised>
808 <supported>
809 <rate>10Gb</rate>
810 <rate>100Gb</rate>
811 <medium>fiber</medium>
812 <pause>symmetric</pause>
813 </supported>
814 <advertised-peer>
815 <rate>10Gb</rate>
816 <rate>100Gb</rate>
817 <medium>fiber</medium>
818 <pause>symmetric</pause>
819 </advertised-peer>
820 </features>
821 <ofdpa10:vtap xmlns:ofdpa10="urn:bcm:ofdpa10:accton01" xc:operation="OPERATION">
822 <ofdpa10:phy-port>PHY_PORT</ofdpa10:phy-port>
823 <ofdpa10:vid>VLAN_ID</ofdpa10:vid>
824 <ofdpa10:vni>VNID</ofdpa10:vni>
825 </ofdpa10:vtap>
826 </port>
827 </resources>
828 <logical-switches>
829 <switch>
830 <id>DATAPATH_ID</id>
831 <datapath-id>DATAPATH_ID</datapath-id>
832 <resources>
833 <port xc:operation="OPERATION">LPORT</port>
834 </resources>
835 </switch>
836 </logical-switches>
837 </capable-switch>
838 </config>
839 """
840 else:
841 config_vtap_xml="""
842 <config>
843 <capable-switch xmlns="urn:onf:of111:config:yang" xmlns:xc="urn:ietf:params:xml:ns:netconf:base:1.0">
844 <id>capable-switch-1</id>
845 <resources>
846 <port xc:operation="OPERATION">
847 <resource-id >LPORT</resource-id>
848 <features>
849 <current>
850 <rate>10Gb</rate>
851 <medium>fiber</medium>
852 <pause>symmetric</pause>
853 </current>
854 <advertised>
855 <rate>10Gb</rate>
856 <rate>100Gb</rate>
857 <medium>fiber</medium>
858 <pause>symmetric</pause>
859 </advertised>
860 <supported>
861 <rate>10Gb</rate>
862 <rate>100Gb</rate>
863 <medium>fiber</medium>
864 <pause>symmetric</pause>
865 </supported>
866 <advertised-peer>
867 <rate>10Gb</rate>
868 <rate>100Gb</rate>
869 <medium>fiber</medium>
870 <pause>symmetric</pause>
871 </advertised-peer>
872 </features>
873 <ofdpa10:vtap xmlns:ofdpa10="urn:bcm:ofdpa10:accton01" xc:operation="OPERATION">
874 <ofdpa10:phy-port>PHY_PORT</ofdpa10:phy-port>
875 <ofdpa10:vni>VNID</ofdpa10:vni>
876 </ofdpa10:vtap>
877 </port>
878 </resources>
879 <logical-switches>
880 <switch>
881 <id>DATAPATH_ID</id>
882 <datapath-id>DATAPATH_ID</datapath-id>
883 <resources>
884 <port xc:operation="OPERATION">LPORT</port>
885 </resources>
886 </switch>
887 </logical-switches>
888 </capable-switch>
889 </config>
890 """
891 str_datapath_id_f= "{:016x}".format(dp_id)
892 str_datapath_id=':'.join([str_datapath_id_f[i:i+2] for i in range(0, len(str_datapath_id_f), 2)])
893 config_vtap_xml=config_vtap_xml.replace("DATAPATH_ID", str_datapath_id)
macauley25999cf2015-08-07 17:03:24 +0800894 config_vtap_xml=config_vtap_xml.replace("LPORT", str(int(lport)))
macauleyfddc4662015-07-27 17:40:30 +0800895 config_vtap_xml=config_vtap_xml.replace("PHY_PORT", str(phy_port))
896 config_vtap_xml=config_vtap_xml.replace("VLAN_ID", str(vlan))
897 config_vtap_xml=config_vtap_xml.replace("VNID", str(vnid))
898 config_vtap_xml=config_vtap_xml.replace("OPERATION", str(operation))
899 return config_vtap_xml
900
901def get_vtep_lport_config_xml(dp_id, lport, src_ip, dst_ip, next_hop_id, vnid, udp_src_port=6633, ttl=25, operation='merge'):
902 """
903 Command Example:
904 of-agent vtep 10002 source user-input-src-ip destination user-input-dst-ip udp-source-port 6633 nexthop 2 ttl 25
905 of-agent vtp 10001 vni 10
906 """
907
908 config_vtep_xml="""
909 <config>
910 <capable-switch xmlns="urn:onf:of111:config:yang" xmlns:xc="urn:ietf:params:xml:ns:netconf:base:1.0">
911 <id>capable-switch-1</id>
912 <resources>
913 <port xc:operation="OPERATION">
914 <resource-id>LPORT</resource-id>
915 <features>
916 <current>
917 <rate>10Gb</rate>
918 <medium>fiber</medium>
919 <pause>symmetric</pause>
920 </current>
921 <advertised>
922 <rate>10Gb</rate>
923 <rate>100Gb</rate>
924 <medium>fiber</medium>
925 <pause>symmetric</pause>
926 </advertised>
927 <supported>
928 <rate>10Gb</rate>
929 <rate>100Gb</rate>
930 <medium>fiber</medium>
931 <pause>symmetric</pause>
932 </supported>
933 <advertised-peer>
934 <rate>10Gb</rate>
935 <rate>100Gb</rate>
936 <medium>fiber</medium>
937 <pause>symmetric</pause>
938 </advertised-peer>
939 </features>
940 <ofdpa10:vtep xmlns:ofdpa10="urn:bcm:ofdpa10:accton01">
941 <ofdpa10:src-ip>SRC_IP</ofdpa10:src-ip>
942 <ofdpa10:dest-ip>DST_IP</ofdpa10:dest-ip>
943 <ofdpa10:udp-src-port>UDP_SRC_PORT</ofdpa10:udp-src-port>
macauley25999cf2015-08-07 17:03:24 +0800944 <ofdpa10:vni xc:operation="OPERATION">
945 <ofdpa10:id>VNID</ofdpa10:id>
946 </ofdpa10:vni>
macauleyfddc4662015-07-27 17:40:30 +0800947 <ofdpa10:nexthop-id>NEXT_HOP_ID</ofdpa10:nexthop-id>
948 <ofdpa10:ttl>TTL</ofdpa10:ttl>
949 </ofdpa10:vtep>
950 </port>
951 </resources>
952 <logical-switches>
953 <switch>
954 <id>DATAPATH_ID</id>
955 <datapath-id>DATAPATH_ID</datapath-id>
956 <resources>
957 <port xc:operation="OPERATION">LPORT</port>
958 </resources>
959 </switch>
960 </logical-switches>
961 </capable-switch>
962 </config>
963 """
964 str_datapath_id_f= "{:016x}".format(dp_id)
965 str_datapath_id=':'.join([str_datapath_id_f[i:i+2] for i in range(0, len(str_datapath_id_f), 2)])
966 config_vtep_xml=config_vtep_xml.replace("DATAPATH_ID", str_datapath_id)
macauley25999cf2015-08-07 17:03:24 +0800967 config_vtep_xml=config_vtep_xml.replace("LPORT", str(int(lport)))
macauleyfddc4662015-07-27 17:40:30 +0800968 config_vtep_xml=config_vtep_xml.replace("SRC_IP", str(src_ip))
969 config_vtep_xml=config_vtep_xml.replace("DST_IP", str(dst_ip))
970 config_vtep_xml=config_vtep_xml.replace("UDP_SRC_PORT", str(udp_src_port))
971 config_vtep_xml=config_vtep_xml.replace("NEXT_HOP_ID", str(next_hop_id))
972 config_vtep_xml=config_vtep_xml.replace("TTL", str(ttl))
973 config_vtep_xml=config_vtep_xml.replace("VNID", str(vnid))
974 config_vtep_xml=config_vtep_xml.replace("OPERATION", str(operation))
975
976 return config_vtep_xml
977
978def get_next_hop_config_xml(next_hop_id, dst_mac, phy_port, vlan, operation='merge'):
979 #of-agent nexthop 2 destination user-input-dst-mac ethernet 1/2 vid 2
980 config_nexthop_xml="""
981 <config>
982 <of11-config:capable-switch xmlns:of11-config="urn:onf:of111:config:yang" xmlns:xc="urn:ietf:params:xml:ns:netconf:base:1.0">
983 <ofdpa10:next-hop xmlns:ofdpa10="urn:bcm:ofdpa10:accton01" xc:operation="OPERATION">
984 <ofdpa10:id>NEXT_HOP_ID</ofdpa10:id>
985 <ofdpa10:dest-mac>DST_MAC</ofdpa10:dest-mac>
986 <ofdpa10:phy-port>PHY_PORT</ofdpa10:phy-port>
987 <ofdpa10:vid>VLAN_ID</ofdpa10:vid>
988 </ofdpa10:next-hop>
989 </of11-config:capable-switch>
990 </config>
991 """
992 config_nexthop_xml=config_nexthop_xml.replace("VLAN_ID", str(vlan))
993 config_nexthop_xml=config_nexthop_xml.replace("PHY_PORT", str(phy_port))
994 config_nexthop_xml=config_nexthop_xml.replace("NEXT_HOP_ID", str(next_hop_id))
995 config_nexthop_xml=config_nexthop_xml.replace("DST_MAC", str(dst_mac))
996 config_nexthop_xml=config_nexthop_xml.replace("OPERATION", str(operation))
997 return config_nexthop_xml
998
999def get_vni_config_xml(vni_id, mcast_ipv4, next_hop_id, operation='merge'):
1000 #of-agent vni 10 multicast 224.1.1.1 nexthop 20
1001 if mcast_ipv4!=None:
1002 config_vni_xml="""
1003 <config>
1004 <of11-config:capable-switch xmlns:of11-config="urn:onf:of111:config:yang" xmlns:xc="urn:ietf:params:xml:ns:netconf:base:1.0">
1005 <ofdpa10:vni xmlns:ofdpa10="urn:bcm:ofdpa10:accton01" xc:operation="OPERATION">
1006 <ofdpa10:id>VNID</ofdpa10:id>
1007 <ofdpa10:vni-multicast-group>MCAST_IP</ofdpa10:vni-multicast-group>
1008 <ofdpa10:multicast-group-nexthop-id>NEXT_HOP_ID</ofdpa10:multicast-group-nexthop-id>
1009 </ofdpa10:vni>
1010 </of11-config:capable-switch>
1011 </config>
1012 """
1013 config_vni_xml=config_vni_xml.replace("NEXT_HOP_ID", str(next_hop_id))
1014 config_vni_xml=config_vni_xml.replace("MCAST_IP", str(mcast_ipv4))
1015 else:
1016 config_vni_xml="""
1017 <config>
1018 <of11-config:capable-switch xmlns:of11-config="urn:onf:of111:config:yang" xmlns:xc="urn:ietf:params:xml:ns:netconf:base:1.0">
1019 <ofdpa10:vni xmlns:ofdpa10="urn:bcm:ofdpa10:accton01" xc:operation="OPERATION">
1020 <ofdpa10:id>VNID</ofdpa10:id>
1021 </ofdpa10:vni>
1022 </of11-config:capable-switch>
1023 </config>
1024 """
1025
1026 config_vni_xml=config_vni_xml.replace("VNID", str(vni_id))
1027 config_vni_xml=config_vni_xml.replace("OPERATION", str(operation))
1028 return config_vni_xml
1029
1030def get_featureReplay(self):
1031 req = ofp.message.features_request()
1032 res, raw = self.controller.transact(req)
1033 self.assertIsNotNone(res, "Did not receive a response from the DUT.")
1034 self.assertEqual(res.type, ofp.OFPT_FEATURES_REPLY,
1035 ("Unexpected packet type %d received in response to "
1036 "OFPT_FEATURES_REQUEST") % res.type)
1037 return res
1038
1039def send_edit_config(switch_ip, xml, target='runing'):
1040 NETCONF_ACCOUNT="netconfuser"
1041 NETCONF_PASSWD="netconfuser"
1042 with manager.connect_ssh(host=switch_ip, port=830, username=NETCONF_ACCOUNT, password=NETCONF_PASSWD, hostkey_verify=False ) as m:
1043 try:
1044 m.edit_config(target='running',
1045 config=xml,
1046 default_operation='merge',
1047 error_option='stop-on-error')
1048
1049 except Exception as e:
1050 logging.info("Fail to set xml %s", xml)
1051 return False
1052
1053 #return m.get_config(source='running').data_xml
1054 return True
1055
1056def send_delete_config(switch_ip, xml, target='runing'):
1057 NETCONF_ACCOUNT="netconfuser"
1058 NETCONF_PASSWD="netconfuser"
1059 with manager.connect_ssh(host=switch_ip, port=830, username=NETCONF_ACCOUNT, password=NETCONF_PASSWD, hostkey_verify=False ) as m:
1060 try:
1061 m.edit_config(target='running',
1062 config=xml,
1063 default_operation='delete',
1064 error_option='stop-on-error')
1065
1066 except Exception as e:
1067 logging.info("Fail to set xml %s", xml)
1068 return False
1069
1070 #return m.get_config(source='running').data_xml
1071 return True
1072
1073def get_edit_config(switch_ip, target='runing'):
1074 NETCONF_ACCOUNT="netconfuser"
1075 NETCONF_PASSWD="netconfuser"
1076 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 +08001077 return m.get_config(source='running').data_xml
macauleydbff3272015-07-30 14:07:16 +08001078
macauley_cheng67da9262015-08-31 15:18:41 +08001079
1080"""
1081MPLS
1082"""
1083
1084OFDPA_MPLS_SUBTYPE_SHIFT=24
1085OFDPA_MPLS_GROUP_SUBTYPE_L2_VPN_LABEL=1
1086OFDPA_MPLS_GROUP_SUBTYPE_L3_VPN_LABEL=2
1087OFDPA_MPLS_GROUP_SUBTYPE_TUNNEL_LABEL1=3
1088OFDPA_MPLS_GROUP_SUBTYPE_TUNNEL_LABEL2=4
1089OFDPA_MPLS_GROUP_SUBTYPE_SWAP_LABEL=5
1090OFDPA_MPLS_GROUP_SUBTYPE_FAST_FAILOVER_GROUP=6
1091OFDPA_MPLS_GROUP_SUBTYPE_ECMP=8
1092OFDPA_MPLS_GROUP_SUBTYPE_L2_TAG=10
1093
1094def encode_mpls_interface_group_id(subtype, index):
1095 index=index&0x00ffffff
1096 assert(subtype==0)
1097 return index + (9 << OFDPA_GROUP_TYPE_SHIFT)+(subtype<<OFDPA_MPLS_SUBTYPE_SHIFT)
1098
1099def encode_mpls_label_group_id(subtype, index):
1100 index=index&0x00ffffff
1101 assert(subtype <=5 or subtype==0)
1102 #1: l2 vpn label
1103 #2: l3 vpn label
1104 #3: mpls tunnel label 1
1105 #4: mpls tunnel lable 2
1106 #5: mpls swap label
1107 return index + (9 << OFDPA_GROUP_TYPE_SHIFT)+(subtype<<OFDPA_MPLS_SUBTYPE_SHIFT)
1108
1109def encode_mpls_forwarding_group_id(subtype, index):
1110 index=index&0x00ffffff
1111 assert(subtype==6 or subtype==8 or subtype==10)
1112 return index + (10 << OFDPA_GROUP_TYPE_SHIFT)+(subtype<<OFDPA_MPLS_SUBTYPE_SHIFT)
1113
1114
1115def add_mpls_intf_group(ctrl, ref_gid, dst_mac, src_mac, vid, index, subtype=0):
1116 action=[]
1117 action.append(ofp.action.set_field(ofp.oxm.eth_src(src_mac)))
1118 action.append(ofp.action.set_field(ofp.oxm.eth_dst(dst_mac)))
1119 action.append(ofp.action.set_field(ofp.oxm.vlan_vid(vid)))
1120 action.append(ofp.action.group(ref_gid))
1121
1122 buckets = [ofp.bucket(actions=action)]
1123
1124 mpls_group_id =encode_mpls_interface_group_id(subtype, index)
1125 request = ofp.message.group_add(group_type=ofp.OFPGT_INDIRECT,
1126 group_id=mpls_group_id,
1127 buckets=buckets
1128 )
1129 ctrl.message_send(request)
1130 return mpls_group_id, request
1131
1132def add_mpls_label_group(ctrl, subtype, index, ref_gid,
1133 lmep_id=-1,
1134 qos_index=-1,
1135 push_l2_header=False,
1136 push_vlan=False,
1137 push_mpls_header=False,
1138 push_cw=False,
1139 set_mpls_label=None,
1140 set_bos=None,
1141 set_tc=None,
1142 set_tc_from_table=False,
1143 cpy_tc_outward=False,
1144 set_ttl=None,
1145 cpy_ttl_outward=False,
1146 oam_lm_tx_count=False,
1147 set_pri_from_table=False
1148 ):
1149 """
1150 @ref_gid: only can be mpls intf group or mpls tunnel label 1/2 group
1151 """
1152 action=[]
1153
1154 if push_vlan== True:
1155 action.append(ofp.action.push_vlan(0x8100))
1156 if push_mpls_header== True:
1157 action.append(ofp.action.push_mpls(0x8847))
1158 if set_mpls_label != None:
1159 action.append(ofp.action.set_field(ofp.oxm.mpls_label(set_mpls_label)))
1160 if set_bos != None:
1161 action.append(ofp.action.set_field(ofp.oxm.mpls_bos(set_bos)))
1162 if set_tc != None:
1163 assert(set_tc_from_table==False)
1164 action.append(ofp.action.set_field(ofp.oxm.mpls_tc(set_tc)))
1165 if set_ttl != None:
1166 action.append(ofp.action.set_mpls_ttl(set_ttl))
1167 if cpy_ttl_outward == True:
1168 action.append(ofp.action.copy_ttl_out())
1169 """
1170 ofdpa experimenter
1171 """
1172 if push_l2_header== True:
1173 action.append(ofp.action.ofdpa_push_l2_header())
1174 if set_tc_from_table== True:
1175 assert(qos_index>=0)
1176 assert(set_tc == None)
1177 action.append(ofp.action.ofdpa_set_tc_from_table(qos_index))
1178 if cpy_tc_outward == True:
1179 action.append(ofp.action.ofdpa_copy_tc_out())
1180 if oam_lm_tx_count == True:
1181 assert(qos_index>=0 and lmep_id>=0)
1182 action.append(ofp.action.ofdpa_oam_lm_tx_count(lmep_id, qos_index))
1183 if set_pri_from_table == True:
1184 assert(qos_index>=0)
1185 action.append(ofp.action.ofdpa_set_qos_from_table(qos_index))
1186 if push_cw == True:
1187 action.append(ofp.action.ofdpa_push_cw())
1188
1189 action.append(ofp.action.group(ref_gid))
1190 buckets = [ofp.bucket(actions=action)]
1191
1192 mpls_group_id = encode_mpls_label_group_id(subtype, index)
1193 request = ofp.message.group_add(group_type=ofp.OFPGT_INDIRECT,
1194 group_id=mpls_group_id,
1195 buckets=buckets
1196 )
1197 ctrl.message_send(request)
1198
1199 return mpls_group_id, request
1200
1201def add_mpls_forwarding_group(ctrl, subtype, index, ref_gids,
1202 watch_port=None,
macauley_chengd17ce512015-08-31 17:45:51 +08001203 watch_group=ofp.OFPP_ANY,
macauley_cheng67da9262015-08-31 15:18:41 +08001204 push_vlan=None,
macauley_chengd17ce512015-08-31 17:45:51 +08001205 pop_vlan=None,
macauley_cheng67da9262015-08-31 15:18:41 +08001206 set_vid=None):
1207 assert(subtype == OFDPA_MPLS_GROUP_SUBTYPE_FAST_FAILOVER_GROUP
1208 or subtype == OFDPA_MPLS_GROUP_SUBTYPE_ECMP
1209 or subtype == OFDPA_MPLS_GROUP_SUBTYPE_L2_TAG)
macauley_chengd17ce512015-08-31 17:45:51 +08001210
macauley_cheng67da9262015-08-31 15:18:41 +08001211 buckets=[]
1212 if subtype == OFDPA_MPLS_GROUP_SUBTYPE_FAST_FAILOVER_GROUP:
macauley_chengd17ce512015-08-31 17:45:51 +08001213 group_type = ofp.OFPGT_FF
macauley_cheng67da9262015-08-31 15:18:41 +08001214 for gid in ref_gids:
macauley_chengd17ce512015-08-31 17:45:51 +08001215 action=[]
1216 action.append(ofp.action.group(gid))
1217 buckets.append(ofp.bucket(watch_port=watch_port, watch_group=watch_group,actions=action))
1218
macauley_cheng67da9262015-08-31 15:18:41 +08001219 elif subtype == OFDPA_MPLS_GROUP_SUBTYPE_ECMP:
1220 group_type = ofp.OFPGT_SELECT
1221 for gid in ref_gids:
macauley_chengd17ce512015-08-31 17:45:51 +08001222 action=[]
macauley_cheng67da9262015-08-31 15:18:41 +08001223 action.append(ofp.action.group(gid))
1224 buckets.append(ofp.bucket(actions=action))
macauley_chengd17ce512015-08-31 17:45:51 +08001225
macauley_cheng67da9262015-08-31 15:18:41 +08001226 elif subtype == OFDPA_MPLS_GROUP_SUBTYPE_L2_TAG:
1227 group_type = ofp.OFPGT_INDIRECT
macauley_chengd17ce512015-08-31 17:45:51 +08001228 action=[]
macauley_cheng67da9262015-08-31 15:18:41 +08001229 if set_vid!=None:
1230 action.append(ofp.action.set_field(ofp.oxm.vlan_vid(set_vid)))
1231 if push_vlan!=None:
1232 action.append(ofp.action.push_vlan(push_vlan))
1233 if pop_vlan!=None:
macauley_chengd17ce512015-08-31 17:45:51 +08001234 action.append(ofp.action.pop_vlan())
macauley_cheng67da9262015-08-31 15:18:41 +08001235 action.append(ofp.action.group(ref_gids[0]))
1236 buckets.append(ofp.bucket(actions=action))
macauley_chengd17ce512015-08-31 17:45:51 +08001237
1238 mpls_group_id = encode_mpls_forwarding_group_id(subtype, index)
macauley_cheng67da9262015-08-31 15:18:41 +08001239 request = ofp.message.group_add(group_type=group_type,
macauley_cheng67da9262015-08-31 15:18:41 +08001240 group_id=mpls_group_id,
1241 buckets=buckets
1242 )
1243 ctrl.message_send(request)
1244 return mpls_group_id, request
macauley_chengd17ce512015-08-31 17:45:51 +08001245
1246
macauley_cheng67da9262015-08-31 15:18:41 +08001247"""
1248dislay
1249"""
macauleydbff3272015-07-30 14:07:16 +08001250def print_current_table_flow_stat(ctrl, table_id=0xff):
1251 stat_req=ofp.message.flow_stats_request()
1252 response, pkt = ctrl.transact(stat_req)
1253 if response == None:
1254 print "no response"
1255 return None
1256 print len(response.entries)
1257 for obj in response.entries:
1258 print "match ", obj.match
1259 print "cookie", obj.cookie
1260 print "priority", obj.priority
1261 print "idle_timeout", obj.idle_timeout
1262 print "hard_timeout", obj.hard_timeout
1263 #obj.actions
1264 print "packet count: %lx"%obj.packet_count