blob: fd9d1fed64699ce01f091bfb3b33ad9db3b9b565 [file] [log] [blame]
Matteo Scandoloa229eca2017-08-08 13:05:28 -07001
2# Copyright 2017-present Open Networking Foundation
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15
16
macauley97557232015-07-16 17:28:07 +080017import logging
18
19from oftest import config
20import oftest.base_tests as base_tests
21import ofp
22import time
23from oftest.testutils import *
Pier1e4e98e2016-10-26 14:36:05 -070024from oftest.parse import parse_ipv6
macauley97557232015-07-16 17:28:07 +080025
macauleyfddc4662015-07-27 17:40:30 +080026from ncclient import manager
27import ncclient
28
macauley97557232015-07-16 17:28:07 +080029OFDPA_GROUP_TYPE_SHIFT=28
30OFDPA_VLAN_ID_SHIFT =16
macauleyfddc4662015-07-27 17:40:30 +080031OFDPA_TUNNEL_ID_SHIFT =12
32OFDPA_TUNNEL_SUBTYPE_SHIFT=10
macauley97557232015-07-16 17:28:07 +080033
34#VLAN_TABLE_FLAGS
35VLAN_TABLE_FLAG_ONLY_UNTAG=1
36VLAN_TABLE_FLAG_ONLY_TAG =2
37VLAN_TABLE_FLAG_ONLY_BOTH =3
Piere1308762016-09-12 15:29:56 -070038VLAN_TABLE_FLAG_ONLY_STACKED=5
39VLAN_TABLE_FLAG_PRIORITY=6
40VLAN_TABLE_FLAG_ONLY_UNTAG_PRIORITY=7
macauley97557232015-07-16 17:28:07 +080041
macauleye8b140e2015-08-03 13:35:45 +080042PORT_FLOW_TABLE=0
43VLAN_FLOW_TABLE=10
Piere1308762016-09-12 15:29:56 -070044VLAN_1_FLOW_TABLE=11
Piercf76e802016-09-19 20:16:35 -070045MPLS_L2_PORT_FLOW_TABLE=13
46MPLS_L2_PORT_DSCP_TRUST_FLOW_TABLE=15
47MPLS_L2_PORT_PCP_TRUST_FLOW_TABLE=16
macauleye8b140e2015-08-03 13:35:45 +080048TERMINATION_FLOW_TABLE=20
Piercf76e802016-09-19 20:16:35 -070049MPLS_TYPE_FLOW_TABLE=29
macauleye8b140e2015-08-03 13:35:45 +080050UCAST_ROUTING_FLOW_TABLE=30
51MCAST_ROUTING_FLOW_TABLE=40
52BRIDGE_FLOW_TABLE=50
53ACL_FLOW_TABLE=60
54
55def convertIP4toStr(ip_addr):
56 a=(ip_addr&0xff000000)>>24
57 b=(ip_addr&0x00ff0000)>>16
58 c=(ip_addr&0x0000ff00)>>8
59 d=(ip_addr&0x000000ff)
60 return str(a)+"."+str(b)+"."+str(c)+"."+str(d)
61
62def convertMACtoStr(mac):
63 if not isinstance(mac, list):
64 assert(0)
65
66 return ':'.join(['%02X' % x for x in mac])
67
macauley7f89d962015-08-06 18:13:48 +080068def getSwitchCpuMACFromDPID(dpid):
69 str_datapath_id_f= "{:016x}".format(dpid)
70 str_datapath_id=':'.join([str_datapath_id_f[i:i+2] for i in range(0, len(str_datapath_id_f), 2)])
71 switch_cpu_mac_str=str_datapath_id[6:]
72 switch_cpu_mac = switch_cpu_mac_str.split(":")
73 switch_cpu_mac=[int(switch_cpu_mac[i],16) for i in range(0, len(switch_cpu_mac))]
74
75 return switch_cpu_mac_str, switch_cpu_mac
Pierbbdf3782016-08-22 17:58:26 -070076
macauley_cheng67da9262015-08-31 15:18:41 +080077def DumpGroup(stats, verify_group_stats, always_show=True):
78 if(len(stats) > len(verify_group_stats)):
79 min_len = len(verify_group_stats)
80 print "Stats Len is not the same, stats>verify_group_stats"
81 if(len(stats)< len(verify_group_stats)):
Pierbbdf3782016-08-22 17:58:26 -070082 min_len = len(stats)
macauley_cheng67da9262015-08-31 15:18:41 +080083 print "Stats Len is not the same, stats<verify_group_stats"
Pierbbdf3782016-08-22 17:58:26 -070084 else:
macauley_cheng67da9262015-08-31 15:18:41 +080085 min_len = len(stats)
macauleye8b140e2015-08-03 13:35:45 +080086
macauley_cheng67da9262015-08-31 15:18:41 +080087 print "\r\n"
88 for i in range(min_len):
89 gs = stats[i]
Pierbbdf3782016-08-22 17:58:26 -070090 gv = verify_group_stats[i]
macauley_cheng67da9262015-08-31 15:18:41 +080091 print "FromSwtich:(GID=%lx, TYPE=%lx)\r\nVerify :(GID=%lx, TYPE=%lx)"%(gs.group_id, gs.group_type, gv.group_id, gv.group_type)
92 if(len(gs.buckets) != len(gv.buckets)):
93 print "buckets len is not the same gs %lx, gv %lx",(len(gs.buckets), len(gv.buckets))
94
95 for j in range(len(gs.buckets)):
96 b1=gs.buckets[j]
Pierbbdf3782016-08-22 17:58:26 -070097 b2=gv.buckets[j]
macauley_cheng67da9262015-08-31 15:18:41 +080098 if(len(b1.actions) != len(b2.actions)):
99 print "action len is not the same"
100
101 for k in range(len(b1.actions)):
102 a1=b1.actions[k]
103 a2=b2.actions[k]
104 if(always_show == True):
105 print "a1:"+a1.show()
Pierbbdf3782016-08-22 17:58:26 -0700106 print "a2:"+a2.show()
macauley_cheng67da9262015-08-31 15:18:41 +0800107
108def AssertGroup(self, stats, verify_group_stats):
109 self.assertTrue(len(stats) ==len(verify_group_stats), "stats len is not the same")
110
111 for i in range(len(stats)):
112 gs = stats[i]
Pierbbdf3782016-08-22 17:58:26 -0700113 gv = verify_group_stats[i]
macauley_cheng67da9262015-08-31 15:18:41 +0800114 self.assertTrue(len(gs.buckets) == len(gv.buckets), "buckets len is not the same")
115
116 for j in range(len(gs.buckets)):
117 b1=gs.buckets[j]
Pierbbdf3782016-08-22 17:58:26 -0700118 b2=gv.buckets[j]
macauley_cheng67da9262015-08-31 15:18:41 +0800119 self.assertTrue(len(b1.actions) == len(b2.actions), "action len is not the same")
120
121 for k in range(len(b1.actions)):
122 a1=b1.actions[k]
123 a2=b2.actions[k]
124 self.assertEquals(a1, a2, "action is not the same")
Pierbbdf3782016-08-22 17:58:26 -0700125
macauley97557232015-07-16 17:28:07 +0800126def encode_l2_interface_group_id(vlan, id):
127 return id + (vlan << OFDPA_VLAN_ID_SHIFT)
128
129def encode_l2_rewrite_group_id(id):
130 return id + (1 << OFDPA_GROUP_TYPE_SHIFT)
131
132def encode_l3_unicast_group_id(id):
133 return id + (2 << OFDPA_GROUP_TYPE_SHIFT)
134
135def encode_l2_mcast_group_id(vlan, id):
136 return id + (vlan << OFDPA_VLAN_ID_SHIFT) + (3 << OFDPA_GROUP_TYPE_SHIFT)
137
138def encode_l2_flood_group_id(vlan, id):
139 return id + (vlan << OFDPA_VLAN_ID_SHIFT) + (4 << OFDPA_GROUP_TYPE_SHIFT)
Pierbbdf3782016-08-22 17:58:26 -0700140
macauley97557232015-07-16 17:28:07 +0800141def encode_l3_interface_group_id(id):
142 return id + (5 << OFDPA_GROUP_TYPE_SHIFT)
143
144def encode_l3_mcast_group_id(vlan, id):
145 return id + (vlan << OFDPA_VLAN_ID_SHIFT)+(6 << OFDPA_GROUP_TYPE_SHIFT)
146
147def encode_l3_ecmp_group_id(id):
148 return id + (7 << OFDPA_GROUP_TYPE_SHIFT)
149
Flavio Castro91d1a552016-05-17 16:59:44 -0700150def encode_l2_unfiltered_group_id(id):
151 return id + (11 << OFDPA_GROUP_TYPE_SHIFT)
152
macauleyfddc4662015-07-27 17:40:30 +0800153def encode_l2_overlay_group_id(tunnel_id, subtype, index):
154 tunnel_id=tunnel_id&0xffff #16 bits
155 subtype = subtype&3 #2 bits
156 index = index & 0x3f #10 bits
157 return index + (tunnel_id << OFDPA_TUNNEL_ID_SHIFT)+ (subtype<<OFDPA_TUNNEL_SUBTYPE_SHIFT)+(8 << OFDPA_GROUP_TYPE_SHIFT)
macauley97557232015-07-16 17:28:07 +0800158
Flavio Castro91d1a552016-05-17 16:59:44 -0700159def add_l2_unfiltered_group(ctrl, ports, send_barrier=False):
160 # group table
161 # set up untag groups for each port
162 group_id_list=[]
163 msgs=[]
164 for of_port in ports:
165 # do stuff
166 group_id = encode_l2_unfiltered_group_id(of_port)
167 group_id_list.append(group_id)
168 actions = [ofp.action.output(of_port)]
169 actions.append(ofp.action.set_field(ofp.oxm.exp1ByteValue(exp_type=24, value=1)))
170
171 buckets = [ofp.bucket(actions=actions)]
172 request = ofp.message.group_add(group_type=ofp.OFPGT_INDIRECT,
173 group_id=group_id,
174 buckets=buckets
175 )
176 ctrl.message_send(request)
177 msgs.append(request)
178
179 if send_barrier:
180 do_barrier(ctrl)
181
182 return group_id_list, msgs
183
Pierf6f28162016-09-22 16:30:52 -0700184def add_one_l2_unfiltered_group(ctrl, of_port, send_barrier=False):
185 # group table
186 # set up untag groups for each port
187 group_id = encode_l2_unfiltered_group_id(of_port)
188 actions = [ofp.action.output(of_port)]
189 actions.append(ofp.action.set_field(ofp.oxm.exp1ByteValue(exp_type=24, value=1)))
190
191 buckets = [ofp.bucket(actions=actions)]
192 request = ofp.message.group_add(
193 group_type=ofp.OFPGT_INDIRECT,
194 group_id=group_id,
195 buckets=buckets
196 )
197 ctrl.message_send(request)
198
199 if send_barrier:
200 do_barrier(ctrl)
201
202 return group_id, request
203
Flavio Castrod4c44d12015-12-08 14:44:18 -0500204def add_l2_interface_group(ctrl, ports, vlan_id=1, is_tagged=False, send_barrier=False):
macauley97557232015-07-16 17:28:07 +0800205 # group table
206 # set up untag groups for each port
macauley41904ed2015-07-16 17:38:35 +0800207 group_id_list=[]
macauley15909e72015-07-17 15:58:57 +0800208 msgs=[]
macauley97557232015-07-16 17:28:07 +0800209 for of_port in ports:
210 # do stuff
211 group_id = encode_l2_interface_group_id(vlan_id, of_port)
macauley41904ed2015-07-16 17:38:35 +0800212 group_id_list.append(group_id)
macauley97557232015-07-16 17:28:07 +0800213 if is_tagged:
214 actions = [
215 ofp.action.output(of_port),
Pierbbdf3782016-08-22 17:58:26 -0700216 ]
macauley97557232015-07-16 17:28:07 +0800217 else:
218 actions = [
219 ofp.action.pop_vlan(),
220 ofp.action.output(of_port),
221 ]
222
223 buckets = [
224 ofp.bucket(actions=actions),
225 ]
226
227 request = ofp.message.group_add(group_type=ofp.OFPGT_INDIRECT,
228 group_id=group_id,
229 buckets=buckets
230 )
231 ctrl.message_send(request)
macauley15909e72015-07-17 15:58:57 +0800232 msgs.append(request)
macauley97557232015-07-16 17:28:07 +0800233
234 if send_barrier:
235 do_barrier(ctrl)
Pierbbdf3782016-08-22 17:58:26 -0700236
macauley15909e72015-07-17 15:58:57 +0800237 return group_id_list, msgs
macauley97557232015-07-16 17:28:07 +0800238
Flavio Castrod4c44d12015-12-08 14:44:18 -0500239def add_one_l2_interface_group(ctrl, port, vlan_id=1, is_tagged=False, send_barrier=False):
macauley0f91a3e2015-07-17 18:09:59 +0800240 # group table
241 # set up untag groups for each port
242 group_id = encode_l2_interface_group_id(vlan_id, port)
243
244 if is_tagged:
245 actions = [
246 ofp.action.output(port),
Pierbbdf3782016-08-22 17:58:26 -0700247 ]
macauley0f91a3e2015-07-17 18:09:59 +0800248 else:
249 actions = [
250 ofp.action.pop_vlan(),
251 ofp.action.output(port),
252 ]
253
254 buckets = [
255 ofp.bucket(actions=actions),
256 ]
257
258 request = ofp.message.group_add(group_type=ofp.OFPGT_INDIRECT,
259 group_id=group_id,
260 buckets=buckets
261 )
262 ctrl.message_send(request)
263
264 if send_barrier:
265 do_barrier(ctrl)
Pierbbdf3782016-08-22 17:58:26 -0700266
macauley0f91a3e2015-07-17 18:09:59 +0800267 return group_id, request
Pierbbdf3782016-08-22 17:58:26 -0700268
macauley97557232015-07-16 17:28:07 +0800269def add_l2_mcast_group(ctrl, ports, vlanid, mcast_grp_index):
270 buckets=[]
271 for of_port in ports:
272 group_id = encode_l2_interface_group_id(vlanid, of_port)
273 action=[ofp.action.group(group_id)]
274 buckets.append(ofp.bucket(actions=action))
275
276 group_id =encode_l2_mcast_group_id(vlanid, mcast_grp_index)
277 request = ofp.message.group_add(group_type=ofp.OFPGT_ALL,
278 group_id=group_id,
279 buckets=buckets
280 )
281 ctrl.message_send(request)
macauley15909e72015-07-17 15:58:57 +0800282 return request
macauley97557232015-07-16 17:28:07 +0800283
macauley15909e72015-07-17 15:58:57 +0800284def add_l2_flood_group(ctrl, ports, vlanid, id):
285 buckets=[]
286 for of_port in ports:
287 group_id = encode_l2_interface_group_id(vlanid, of_port)
288 action=[ofp.action.group(group_id)]
289 buckets.append(ofp.bucket(actions=action))
macauley97557232015-07-16 17:28:07 +0800290
macauley15909e72015-07-17 15:58:57 +0800291 group_id =encode_l2_flood_group_id(vlanid, id)
292 request = ofp.message.group_add(group_type=ofp.OFPGT_ALL,
293 group_id=group_id,
294 buckets=buckets
295 )
296 ctrl.message_send(request)
297 return request
298
Flavio Castroa7162bb2016-07-25 17:30:30 -0700299def mod_l2_flood_group(ctrl, ports, vlanid, id):
300 buckets=[]
301 for of_port in ports:
302 group_id = encode_l2_interface_group_id(vlanid, of_port)
303 action=[ofp.action.group(group_id)]
304 buckets.append(ofp.bucket(actions=action))
305
306 group_id =encode_l2_flood_group_id(vlanid, id)
307 request = ofp.message.group_modify(group_type=ofp.OFPGT_ALL,
308 group_id=group_id,
309 buckets=buckets
310 )
311 ctrl.message_send(request)
312 return request
313
314
macauley15909e72015-07-17 15:58:57 +0800315def add_l2_rewrite_group(ctrl, port, vlanid, id, src_mac, dst_mac):
316 group_id = encode_l2_interface_group_id(vlanid, port)
317
318 action=[]
319 if src_mac is not None:
320 action.append(ofp.action.set_field(ofp.oxm.eth_src(src_mac)))
321
322 if dst_mac is not None:
323 action.append(ofp.action.set_field(ofp.oxm.eth_dst(dst_mac)))
324
Flavio Castro91d1a552016-05-17 16:59:44 -0700325 action.append(ofp.action.set_field(ofp.oxm.vlan_vid(0x1000+vlanid)))
Pierbbdf3782016-08-22 17:58:26 -0700326
macauley15909e72015-07-17 15:58:57 +0800327 action.append(ofp.action.group(group_id))
Pierbbdf3782016-08-22 17:58:26 -0700328
macauley15909e72015-07-17 15:58:57 +0800329 buckets = [ofp.bucket(actions=action)]
330
331 group_id =encode_l2_rewrite_group_id(id)
332 request = ofp.message.group_add(group_type=ofp.OFPGT_INDIRECT,
333 group_id=group_id,
334 buckets=buckets
335 )
336 ctrl.message_send(request)
337 return request
Pierbbdf3782016-08-22 17:58:26 -0700338
Pier1e4e98e2016-10-26 14:36:05 -0700339def add_l3_unicast_group(ctrl, port, vlanid, id, src_mac, dst_mac, send_barrier=False):
macauley15909e72015-07-17 15:58:57 +0800340 group_id = encode_l2_interface_group_id(vlanid, port)
341
342 action=[]
343 if src_mac is not None:
344 action.append(ofp.action.set_field(ofp.oxm.eth_src(src_mac)))
345
346 if dst_mac is not None:
347 action.append(ofp.action.set_field(ofp.oxm.eth_dst(dst_mac)))
348
Flavio Castroaf2b4502016-02-02 17:41:32 -0500349 action.append(ofp.action.set_field(ofp.oxm.vlan_vid(0x1000+vlanid)))
Pierbbdf3782016-08-22 17:58:26 -0700350
macauley15909e72015-07-17 15:58:57 +0800351 action.append(ofp.action.group(group_id))
Pierbbdf3782016-08-22 17:58:26 -0700352
macauley15909e72015-07-17 15:58:57 +0800353 buckets = [ofp.bucket(actions=action)]
354
355 group_id =encode_l3_unicast_group_id(id)
356 request = ofp.message.group_add(group_type=ofp.OFPGT_INDIRECT,
357 group_id=group_id,
358 buckets=buckets
359 )
360 ctrl.message_send(request)
Pier1e4e98e2016-10-26 14:36:05 -0700361
362 if send_barrier:
363 do_barrier(ctrl)
364
macauley15909e72015-07-17 15:58:57 +0800365 return request
Pierbbdf3782016-08-22 17:58:26 -0700366
macauley15909e72015-07-17 15:58:57 +0800367def add_l3_interface_group(ctrl, port, vlanid, id, src_mac):
368 group_id = encode_l2_interface_group_id(vlanid, port)
369
370 action=[]
371 action.append(ofp.action.set_field(ofp.oxm.eth_src(src_mac)))
Pierbbdf3782016-08-22 17:58:26 -0700372 action.append(ofp.action.set_field(ofp.oxm.vlan_vid(0x1000+vlanid)))
macauley15909e72015-07-17 15:58:57 +0800373 action.append(ofp.action.group(group_id))
Pierbbdf3782016-08-22 17:58:26 -0700374
macauley15909e72015-07-17 15:58:57 +0800375 buckets = [ofp.bucket(actions=action)]
376
377 group_id =encode_l3_interface_group_id(id)
378 request = ofp.message.group_add(group_type=ofp.OFPGT_INDIRECT,
379 group_id=group_id,
380 buckets=buckets
381 )
382 ctrl.message_send(request)
383 return request
384
Pier1e4e98e2016-10-26 14:36:05 -0700385def add_l3_ecmp_group(ctrl, id, l3_ucast_groups, send_barrier=False):
macauley15909e72015-07-17 15:58:57 +0800386 buckets=[]
387 for group in l3_ucast_groups:
388 buckets.append(ofp.bucket(actions=[ofp.action.group(group)]))
389
390 group_id =encode_l3_ecmp_group_id(id)
391 request = ofp.message.group_add(group_type=ofp.OFPGT_SELECT,
392 group_id=group_id,
393 buckets=buckets
394 )
395 ctrl.message_send(request)
Pier1e4e98e2016-10-26 14:36:05 -0700396
397 if send_barrier:
398 do_barrier(ctrl)
399
macauley15909e72015-07-17 15:58:57 +0800400 return request
Flavio Castroa7162bb2016-07-25 17:30:30 -0700401
402def mod_l3_ecmp_group(ctrl, id, l3_ucast_groups):
403 buckets=[]
404 for group in l3_ucast_groups:
405 buckets.append(ofp.bucket(actions=[ofp.action.group(group)]))
406
407 group_id =encode_l3_ecmp_group_id(id)
408 request = ofp.message.group_modify(group_type=ofp.OFPGT_SELECT,
409 group_id=group_id,
410 buckets=buckets
411 )
412 ctrl.message_send(request)
413 return request
414
macauley15909e72015-07-17 15:58:57 +0800415def add_l3_mcast_group(ctrl, vid, mcast_group_id, groups_on_buckets):
416 buckets=[]
417 for group in groups_on_buckets:
418 buckets.append(ofp.bucket(actions=[ofp.action.group(group)]))
Pierbbdf3782016-08-22 17:58:26 -0700419
macauley15909e72015-07-17 15:58:57 +0800420 group_id =encode_l3_mcast_group_id(vid, mcast_group_id)
421 request = ofp.message.group_add(group_type=ofp.OFPGT_ALL,
422 group_id=group_id,
423 buckets=buckets
424 )
425 ctrl.message_send(request)
426 return request
macauleyfddc4662015-07-27 17:40:30 +0800427
428def add_l2_overlay_flood_over_unicast_tunnel_group(ctrl, tunnel_id, ports, index):
429 buckets=[]
430 for port in ports:
431 buckets.append(ofp.bucket(actions=[ofp.action.output(port)]))
432
433 group_id=encode_l2_overlay_group_id(tunnel_id, 0, index)
434 request = ofp.message.group_add(group_type=ofp.OFPGT_ALL,
435 group_id=group_id,
436 buckets=buckets
437 )
438 ctrl.message_send(request)
439 return request
440
441def add_l2_overlay_flood_over_mcast_tunnel_group(ctrl, tunnel_id, ports, index):
442 buckets=[]
443 for port in ports:
444 buckets.append(ofp.bucket(actions=[ofp.action.output(port)]))
445
446 group_id=encode_l2_overlay_group_id(tunnel_id, 1, index)
447 request = ofp.message.group_add(group_type=ofp.OFPGT_ALL,
448 group_id=group_id,
449 buckets=buckets
450 )
451 ctrl.message_send(request)
452 return request
453
454def add_l2_overlay_mcast_over_unicast_tunnel_group(ctrl, tunnel_id, ports, index):
455 buckets=[]
456 for port in ports:
457 buckets.append(ofp.bucket(actions=[ofp.action.output(port)]))
458
459 group_id=encode_l2_overlay_group_id(tunnel_id, 2, index)
460 request = ofp.message.group_add(group_type=ofp.OFPGT_ALL,
461 group_id=group_id,
462 buckets=buckets
463 )
464 ctrl.message_send(request)
465 return request
466
467def add_l2_overlay_mcast_over_mcast_tunnel_group(ctrl, tunnel_id, ports, index):
468 buckets=[]
469 for port in ports:
470 buckets.append(ofp.bucket(actions=[ofp.action.output(port)]))
471
472 group_id=encode_l2_overlay_group_id(tunnel_id, 3, index)
473 request = ofp.message.group_add(group_type=ofp.OFPGT_ALL,
474 group_id=group_id,
475 buckets=buckets
476 )
477 ctrl.message_send(request)
478 return request
Pierbbdf3782016-08-22 17:58:26 -0700479
macauleyfddc4662015-07-27 17:40:30 +0800480def add_port_table_flow(ctrl, is_overlay=True):
481 match = ofp.match()
482
483 if is_overlay == True:
484 match.oxm_list.append(ofp.oxm.in_port(0x10000))
macauleydbff3272015-07-30 14:07:16 +0800485 NEXT_TABLE=50
macauleyfddc4662015-07-27 17:40:30 +0800486 else:
487 match.oxm_list.append(ofp.oxm.in_port(0))
Pierbbdf3782016-08-22 17:58:26 -0700488 NEXT_TABLE=10
macauleyfddc4662015-07-27 17:40:30 +0800489
490 request = ofp.message.flow_add(
Pier265ad5f2017-02-28 17:46:28 +0100491 table_id=0,
492 cookie=42,
493 match=match,
494 instructions=[
495 ofp.instruction.goto_table(NEXT_TABLE)
496 ],
497 priority=0)
macauleyfddc4662015-07-27 17:40:30 +0800498 logging.info("Add port table, match port %lx" % 0x10000)
499 ctrl.message_send(request)
Pierbbdf3782016-08-22 17:58:26 -0700500
Flavio Castrod8f8af22015-12-02 18:19:26 -0500501def pop_vlan_flow(ctrl, ports, vlan_id=1):
502 # table 10: vlan
503 # goto to table 20
504 msgs=[]
505 for of_port in ports:
506 match = ofp.match()
507 match.oxm_list.append(ofp.oxm.in_port(of_port))
508 match.oxm_list.append(ofp.oxm.vlan_vid(0x1000+vlan_id))
509 request = ofp.message.flow_add(
510 table_id=10,
511 cookie=42,
512 match=match,
513 instructions=[
514 ofp.instruction.apply_actions(
515 actions=[
516 ofp.action.pop_vlan()
517 ]
518 ),
519 ofp.instruction.goto_table(20)
520 ],
521 priority=0)
522 logging.info("Add vlan %d tagged packets on port %d and go to table 20" %( vlan_id, of_port))
523 ctrl.message_send(request)
524
525
526 return msgs
macauleyfddc4662015-07-27 17:40:30 +0800527
macauley97557232015-07-16 17:28:07 +0800528def add_vlan_table_flow(ctrl, ports, vlan_id=1, flag=VLAN_TABLE_FLAG_ONLY_BOTH, send_barrier=False):
529 # table 10: vlan
530 # goto to table 20
macauley15909e72015-07-17 15:58:57 +0800531 msgs=[]
macauley97557232015-07-16 17:28:07 +0800532 for of_port in ports:
Flavio Castro932014b2016-01-05 18:29:15 -0500533 if (flag == VLAN_TABLE_FLAG_ONLY_TAG) or (flag == VLAN_TABLE_FLAG_ONLY_BOTH) or (flag == 4):
macauley97557232015-07-16 17:28:07 +0800534 match = ofp.match()
535 match.oxm_list.append(ofp.oxm.in_port(of_port))
536 match.oxm_list.append(ofp.oxm.vlan_vid(0x1000+vlan_id))
537 request = ofp.message.flow_add(
538 table_id=10,
539 cookie=42,
540 match=match,
541 instructions=[
Flavio Castrod8f8af22015-12-02 18:19:26 -0500542 ofp.instruction.apply_actions(
543 actions=[
544 ofp.action.pop_vlan()
545 ]
546 ),
macauley97557232015-07-16 17:28:07 +0800547 ofp.instruction.goto_table(20)
548 ],
549 priority=0)
550 logging.info("Add vlan %d tagged packets on port %d and go to table 20" %( vlan_id, of_port))
551 ctrl.message_send(request)
Pierbbdf3782016-08-22 17:58:26 -0700552
macauley97557232015-07-16 17:28:07 +0800553 if (flag == VLAN_TABLE_FLAG_ONLY_UNTAG) or (flag == VLAN_TABLE_FLAG_ONLY_BOTH):
554 match = ofp.match()
555 match.oxm_list.append(ofp.oxm.in_port(of_port))
Flavio Castro12296312015-12-15 17:48:26 -0500556 match.oxm_list.append(ofp.oxm.vlan_vid_masked(0, 0x1fff))
macauley97557232015-07-16 17:28:07 +0800557 request = ofp.message.flow_add(
558 table_id=10,
559 cookie=42,
560 match=match,
561 instructions=[
562 ofp.instruction.apply_actions(
563 actions=[
Flavio Castroaf2b4502016-02-02 17:41:32 -0500564 ofp.action.set_field(ofp.oxm.vlan_vid(0x1000+vlan_id))
macauley97557232015-07-16 17:28:07 +0800565 ]
566 ),
567 ofp.instruction.goto_table(20)
568 ],
569 priority=0)
570 logging.info("Add vlan %d untagged packets on port %d and go to table 20" % (vlan_id, of_port))
571 ctrl.message_send(request)
macauley15909e72015-07-17 15:58:57 +0800572 msgs.append(request)
macauley97557232015-07-16 17:28:07 +0800573
Flavio Castro932014b2016-01-05 18:29:15 -0500574 if (flag == 4) :
575 match = ofp.match()
576 match.oxm_list.append(ofp.oxm.in_port(of_port))
577 match.oxm_list.append(ofp.oxm.vlan_vid_masked(0x1000, 0x1fff))
578 request = ofp.message.flow_add(
579 table_id=10,
580 cookie=42,
581 match=match,
582 instructions=[
583 ofp.instruction.apply_actions(
584 actions=[
Flavio Castroaf2b4502016-02-02 17:41:32 -0500585 ofp.action.set_field(ofp.oxm.vlan_vid(0x1000+vlan_id))
Flavio Castro932014b2016-01-05 18:29:15 -0500586 ]
587 ),
588 ofp.instruction.goto_table(20)
589 ],
590 priority=0)
591 logging.info("Add vlan %d untagged packets on port %d and go to table 20" % (vlan_id, of_port))
592 ctrl.message_send(request)
593 msgs.append(request)
594
macauley97557232015-07-16 17:28:07 +0800595 if send_barrier:
596 do_barrier(ctrl)
597
macauley15909e72015-07-17 15:58:57 +0800598 return msgs
Pierbbdf3782016-08-22 17:58:26 -0700599
macauley_cheng6e6a6122015-11-16 14:19:18 +0800600def del_vlan_table_flow(ctrl, ports, vlan_id=1, flag=VLAN_TABLE_FLAG_ONLY_BOTH, send_barrier=False):
601 # table 10: vlan
602 # goto to table 20
603 msgs=[]
604 for of_port in ports:
605 if (flag == VLAN_TABLE_FLAG_ONLY_TAG) or (flag == VLAN_TABLE_FLAG_ONLY_BOTH):
606 match = ofp.match()
607 match.oxm_list.append(ofp.oxm.in_port(of_port))
608 match.oxm_list.append(ofp.oxm.vlan_vid(0x1000+vlan_id))
609 request = ofp.message.flow_delete(
610 table_id=10,
611 cookie=42,
612 match=match,
613 priority=0)
614 logging.info("Del vlan %d tagged packets on port %d and go to table 20" %( vlan_id, of_port))
615 ctrl.message_send(request)
macauley0f91a3e2015-07-17 18:09:59 +0800616
macauley_cheng6e6a6122015-11-16 14:19:18 +0800617 if (flag == VLAN_TABLE_FLAG_ONLY_UNTAG) or (flag == VLAN_TABLE_FLAG_ONLY_BOTH):
618 match = ofp.match()
619 match.oxm_list.append(ofp.oxm.in_port(of_port))
620 match.oxm_list.append(ofp.oxm.vlan_vid_masked(0, 0xfff))
621 request = ofp.message.flow_delete(
622 table_id=10,
623 cookie=42,
624 match=match,
625 priority=0)
626 logging.info("Del vlan %d untagged packets on port %d and go to table 20" % (vlan_id, of_port))
627 ctrl.message_send(request)
628 msgs.append(request)
629
630 if send_barrier:
631 do_barrier(ctrl)
632
633 return msgs
Pierbbdf3782016-08-22 17:58:26 -0700634
macauley_cheng6b311612015-09-04 11:32:27 +0800635def add_vlan_table_flow_pvid(ctrl, in_port, match_vid=None, pvid=1, send_barrier=False):
636 """it will tag pack as untagged packet wether it has tagg or not"""
637 match = ofp.match()
638 match.oxm_list.append(ofp.oxm.in_port(in_port))
639 actions=[]
640 if match_vid == None:
Pierbbdf3782016-08-22 17:58:26 -0700641 match.oxm_list.append(ofp.oxm.vlan_vid(0))
macauley_cheng6b311612015-09-04 11:32:27 +0800642 actions.append(ofp.action.set_field(ofp.oxm.vlan_vid(0x1000+pvid)))
643 goto_table=20
644 else:
645 match.oxm_list.append(ofp.oxm.vlan_vid_masked(0x1000+match_vid, 0x1fff))
646 actions.append(ofp.action.push_vlan(0x8100))
Pierbbdf3782016-08-22 17:58:26 -0700647 actions.append(ofp.action.set_field(ofp.oxm.vlan_vid(0x1000+pvid)))
macauley_cheng6b311612015-09-04 11:32:27 +0800648 goto_table=20
Pierbbdf3782016-08-22 17:58:26 -0700649
macauley_cheng6b311612015-09-04 11:32:27 +0800650 request = ofp.message.flow_add(
651 table_id=10,
652 cookie=42,
653 match=match,
654 instructions=[
655 ofp.instruction.apply_actions(actions=actions)
656 ,ofp.instruction.goto_table(goto_table)
657 ],
658 priority=0)
659 logging.info("Add PVID %d on port %d and go to table %ld" %( pvid, in_port, goto_table))
Pierbbdf3782016-08-22 17:58:26 -0700660 ctrl.message_send(request)
661
macauley_cheng6b311612015-09-04 11:32:27 +0800662 if send_barrier:
663 do_barrier(ctrl)
664
665def add_vlan_table_flow_allow_all_vlan(ctrl, in_port, send_barrier=False):
666 """it st flow allow all vlan tag on this port"""
667 match = ofp.match()
668 match.oxm_list.append(ofp.oxm.in_port(in_port))
669 match.oxm_list.append(ofp.oxm.vlan_vid_masked(0x1000, 0x1000))
670 request = ofp.message.flow_add(
671 table_id=10,
672 cookie=42,
673 match=match,
674 instructions=[
Pierbbdf3782016-08-22 17:58:26 -0700675 ofp.instruction.goto_table(20)
macauley_cheng6b311612015-09-04 11:32:27 +0800676 ],
677 priority=0)
678 logging.info("Add allow all vlan on port %d " %(in_port))
Pierbbdf3782016-08-22 17:58:26 -0700679 ctrl.message_send(request)
macauley_cheng6b311612015-09-04 11:32:27 +0800680
Pier7b031af2016-08-25 15:00:22 -0700681def add_one_vlan_table_flow_translation(ctrl, of_port, vlan_id=1, new_vlan_id=-1, vrf=0, flag=VLAN_TABLE_FLAG_ONLY_BOTH, send_barrier=False):
682 # Install a flow for VLAN translation
683 # in VLAN table.
684 # table 10: vlan
685 # goto to table 20
686 if (flag == VLAN_TABLE_FLAG_ONLY_TAG) or (flag == VLAN_TABLE_FLAG_ONLY_BOTH) or (flag == 4):
687 match = ofp.match()
688 match.oxm_list.append(ofp.oxm.in_port(of_port))
689 match.oxm_list.append(ofp.oxm.vlan_vid_masked(0x1000+vlan_id,0x1fff))
690
691 actions=[]
692 if vrf!=0:
693 actions.append(ofp.action.set_field(ofp.oxm.exp2ByteValue(exp_type=1, value=vrf)))
694 if new_vlan_id != -1:
695 actions.append(ofp.action.set_field(ofp.oxm.vlan_vid(0x1000+new_vlan_id)))
696
697 request = ofp.message.flow_add(
698 table_id=10,
699 cookie=42,
700 match=match,
701 instructions=[
702 ofp.instruction.apply_actions(
703 actions=actions
704 ),
705 ofp.instruction.goto_table(20)
706 ],
707 priority=0)
708 logging.info("Add vlan %d tagged packets on port %d and go to table 20" %( vlan_id, of_port))
709 ctrl.message_send(request)
710
Piere1308762016-09-12 15:29:56 -0700711def add_one_vlan_table_flow(ctrl, of_port, out_vlan_id=1, vlan_id=1, vrf=0, flag=VLAN_TABLE_FLAG_ONLY_BOTH, send_barrier=False):
macauley0f91a3e2015-07-17 18:09:59 +0800712 # table 10: vlan
713 # goto to table 20
Flavio Castro932014b2016-01-05 18:29:15 -0500714 if (flag == VLAN_TABLE_FLAG_ONLY_TAG) or (flag == VLAN_TABLE_FLAG_ONLY_BOTH) or (flag == 4):
macauley0f91a3e2015-07-17 18:09:59 +0800715 match = ofp.match()
716 match.oxm_list.append(ofp.oxm.in_port(of_port))
Flavio Castro12296312015-12-15 17:48:26 -0500717 match.oxm_list.append(ofp.oxm.vlan_vid_masked(0x1000+vlan_id,0x1fff))
macauley7f89d962015-08-06 18:13:48 +0800718
719 actions=[]
Alex Yashchuk9f449462017-12-09 18:27:19 +0200720 if config["switch_type"] != 'xpliant' and vrf != 0:
721 actions.append(ofp.action.set_field(ofp.oxm.exp2ByteValue(exp_type=1, value=vrf)))
Pierbbdf3782016-08-22 17:58:26 -0700722
Flavio Castro6d498522015-12-15 14:05:04 -0500723 #actions.append(ofp.action.set_field(ofp.oxm.vlan_vid(value=vlan_id)))
macauley7f89d962015-08-06 18:13:48 +0800724
macauley0f91a3e2015-07-17 18:09:59 +0800725 request = ofp.message.flow_add(
726 table_id=10,
727 cookie=42,
728 match=match,
729 instructions=[
macauley53d90fe2015-08-04 17:34:22 +0800730 ofp.instruction.apply_actions(
macauley7f89d962015-08-06 18:13:48 +0800731 actions=actions
macauley53d90fe2015-08-04 17:34:22 +0800732 ),
733 ofp.instruction.goto_table(20)
macauley0f91a3e2015-07-17 18:09:59 +0800734 ],
735 priority=0)
736 logging.info("Add vlan %d tagged packets on port %d and go to table 20" %( vlan_id, of_port))
737 ctrl.message_send(request)
Pierbbdf3782016-08-22 17:58:26 -0700738
macauley0f91a3e2015-07-17 18:09:59 +0800739 if (flag == VLAN_TABLE_FLAG_ONLY_UNTAG) or (flag == VLAN_TABLE_FLAG_ONLY_BOTH):
740 match = ofp.match()
741 match.oxm_list.append(ofp.oxm.in_port(of_port))
Flavio Castro12296312015-12-15 17:48:26 -0500742 match.oxm_list.append(ofp.oxm.vlan_vid_masked(0, 0x1fff))
Pierbbdf3782016-08-22 17:58:26 -0700743
macauley7f89d962015-08-06 18:13:48 +0800744 actions=[]
745 if vrf!=0:
746 actions.append(ofp.action.set_field(ofp.oxm.exp2ByteValue(exp_type=1, value=vrf)))
Pierbbdf3782016-08-22 17:58:26 -0700747
Flavio Castro91d1a552016-05-17 16:59:44 -0700748 actions.append(ofp.action.set_field(ofp.oxm.vlan_vid(0x1000+vlan_id)))
Pierbbdf3782016-08-22 17:58:26 -0700749
macauley0f91a3e2015-07-17 18:09:59 +0800750 request = ofp.message.flow_add(
751 table_id=10,
752 cookie=42,
753 match=match,
754 instructions=[
755 ofp.instruction.apply_actions(
macauley7f89d962015-08-06 18:13:48 +0800756 actions=actions
macauley0f91a3e2015-07-17 18:09:59 +0800757 ),
758 ofp.instruction.goto_table(20)
759 ],
760 priority=0)
761 logging.info("Add vlan %d untagged packets on port %d and go to table 20" % (vlan_id, of_port))
762 ctrl.message_send(request)
Pierbbdf3782016-08-22 17:58:26 -0700763
Flavio Castro932014b2016-01-05 18:29:15 -0500764 if (flag == 4) :
765 match = ofp.match()
766 match.oxm_list.append(ofp.oxm.in_port(of_port))
767 match.oxm_list.append(ofp.oxm.vlan_vid_masked(0x1000,0x1fff))
768
769 actions=[]
770 if vrf!=0:
771 actions.append(ofp.action.set_field(ofp.oxm.exp2ByteValue(exp_type=1, value=vrf)))
772
Flavio Castro91d1a552016-05-17 16:59:44 -0700773 actions.append(ofp.action.set_field(ofp.oxm.vlan_vid(0x1000+vlan_id)))
Flavio Castro932014b2016-01-05 18:29:15 -0500774
775 request = ofp.message.flow_add(
776 table_id=10,
777 cookie=42,
778 match=match,
779 instructions=[
780 ofp.instruction.apply_actions(
781 actions=actions
782 ),
783 ofp.instruction.goto_table(20)
784 ],
785 priority=0)
786 logging.info("Add vlan %d tagged packets on port %d and go to table 20" %( vlan_id, of_port))
787 ctrl.message_send(request)
macauley0f91a3e2015-07-17 18:09:59 +0800788
Piere1308762016-09-12 15:29:56 -0700789 if (flag == VLAN_TABLE_FLAG_ONLY_STACKED):
790 # This flag is meant to managed stacked vlan packtes
791 # Matches on outer VLAN_ID, set OVID with outer VLAN.
792 # Finally expose inner VLAN_ID with a pop action and
793 # goto VLAN_1_FLOW_TABLE
794 match = ofp.match()
795 match.oxm_list.append(ofp.oxm.in_port(of_port))
796 match.oxm_list.append(ofp.oxm.vlan_vid_masked(0x1000+vlan_id,0x1fff))
797
798 actions=[]
799 actions.append(ofp.action.set_field(ofp.oxm.exp2ByteValue(exp_type=ofp.oxm.OFDPA_EXP_TYPE_OVID, value=0x1000+vlan_id)))
800 actions.append(ofp.action.pop_vlan())
801
802 request = ofp.message.flow_add(
803 table_id=10,
804 cookie=42,
805 match=match,
806 instructions=[
807 ofp.instruction.apply_actions(
808 actions=actions
809 ),
810 ofp.instruction.goto_table(VLAN_1_FLOW_TABLE)
811 ],
812 priority=0)
813 logging.info("Add vlan %d tagged packets on port %d and go to table %d" %( vlan_id, of_port, VLAN_1_FLOW_TABLE))
814 ctrl.message_send(request)
815
816 if (flag == VLAN_TABLE_FLAG_PRIORITY) :
817 match = ofp.match()
818 match.oxm_list.append(ofp.oxm.in_port(of_port))
819 match.oxm_list.append(ofp.oxm.vlan_vid_masked(0x1000, 0x1fff))
820 request = ofp.message.flow_add(
821 table_id=10,
822 cookie=42,
823 match=match,
824 instructions=[
825 ofp.instruction.apply_actions(
826 actions=[
827 ofp.action.set_field(ofp.oxm.vlan_vid(0x1000+vlan_id)),
828 ofp.action.push_vlan(0x8100),
829 ofp.action.set_field(ofp.oxm.vlan_vid(0x1000+out_vlan_id)),
830 ]
831 ),
832 ofp.instruction.goto_table(20)
833 ],
834 priority=0)
835 logging.info("Add vlan %d untagged packets on port %d and go to table 20" % (vlan_id, of_port))
836 ctrl.message_send(request)
837
838 if send_barrier:
839 do_barrier(ctrl)
840
841 return request
842
Piercf76e802016-09-19 20:16:35 -0700843def add_one_vlan_table_flow_pw(ctrl, of_port, tunnel_index, new_vlan_id=1, vlan_id=1, vrf=0, flag=VLAN_TABLE_FLAG_ONLY_TAG, send_barrier=False):
844 # table 10: vlan
845 # goto to table 13
846 if flag == VLAN_TABLE_FLAG_ONLY_TAG:
847 match = ofp.match()
848 match.oxm_list.append(ofp.oxm.in_port(of_port))
849 match.oxm_list.append(ofp.oxm.vlan_vid_masked(0x1000+vlan_id, 0x1fff))
850
851 actions=[]
852 if vlan_id == -1:
853 actions.append(ofp.action.pop_vlan())
854 if new_vlan_id > 1:
855 actions.append(ofp.action.set_field(ofp.oxm.vlan_vid(0x1000+new_vlan_id)))
856 actions.append(ofp.action.set_field(ofp.oxm.exp2ByteValue(exp_type=ofp.oxm.OFDPA_EXP_TYPE_MPLS_TYPE, value=ofp.oxm.VPWS)))
857 actions.append(ofp.action.set_field(ofp.oxm.tunnel_id(tunnel_index + ofp.oxm.TUNNEL_ID_BASE)))
858 # 0x0000nnnn is for UNI interfaces
859 actions.append(ofp.action.set_field(ofp.oxm.exp4ByteValue(exp_type=ofp.oxm.OFDPA_EXP_TYPE_MPLS_L2_PORT, value=0x00000000 + of_port)))
860
861 request = ofp.message.flow_add(
862 table_id=10,
863 cookie=42,
864 match=match,
865 instructions=[
866 ofp.instruction.apply_actions(
867 actions=actions
868 ),
869 ofp.instruction.goto_table(MPLS_L2_PORT_FLOW_TABLE)
870 ],
871 priority=0)
872 logging.info("Add vlan %d tagged packets on port %d and go to table %d" % (vlan_id, of_port, MPLS_L2_PORT_FLOW_TABLE))
873 ctrl.message_send(request)
874
875 if flag == VLAN_TABLE_FLAG_ONLY_UNTAG:
876 match = ofp.match()
877 match.oxm_list.append(ofp.oxm.in_port(of_port))
878 match.oxm_list.append(ofp.oxm.vlan_vid(0))
879
880 actions=[]
881 if vlan_id > 1:
882 actions.append(ofp.action.set_field(ofp.oxm.vlan_vid(0x1000+vlan_id)))
883 actions.append(ofp.action.set_field(ofp.oxm.exp2ByteValue(exp_type=ofp.oxm.OFDPA_EXP_TYPE_MPLS_TYPE, value=ofp.oxm.VPWS)))
884 actions.append(ofp.action.set_field(ofp.oxm.tunnel_id(tunnel_index + ofp.oxm.TUNNEL_ID_BASE)))
885 # 0x0000nnnn is for UNI interfaces
886 actions.append(ofp.action.set_field(ofp.oxm.exp4ByteValue(exp_type=ofp.oxm.OFDPA_EXP_TYPE_MPLS_L2_PORT, value=0x00000000 + of_port)))
887
888 request = ofp.message.flow_add(
889 table_id=10,
890 cookie=42,
891 match=match,
892 instructions=[
893 ofp.instruction.apply_actions(
894 actions=actions
895 ),
896 ofp.instruction.goto_table(MPLS_L2_PORT_FLOW_TABLE)
897 ],
898 priority=0)
899 logging.info("Add vlan %d untagged packets on port %d and go to table %d" % (vlan_id, of_port, MPLS_L2_PORT_FLOW_TABLE))
900 ctrl.message_send(request)
901
902 if send_barrier:
903 do_barrier(ctrl)
904
905 return request
906
Piere1308762016-09-12 15:29:56 -0700907def add_one_vlan_1_table_flow(ctrl, of_port, new_outer_vlan_id=-1, outer_vlan_id=1, inner_vlan_id=1, flag=VLAN_TABLE_FLAG_ONLY_TAG, send_barrier=False):
908 # table 11: vlan 1 table
909 # goto to table 20
910 if flag == VLAN_TABLE_FLAG_ONLY_TAG:
911 match = ofp.match()
912 match.oxm_list.append(ofp.oxm.in_port(of_port))
913 match.oxm_list.append(ofp.oxm.vlan_vid_masked(0x1000+inner_vlan_id,0x1fff))
914 match.oxm_list.append(ofp.oxm.exp2ByteValue(ofp.oxm.OFDPA_EXP_TYPE_OVID, 0x1000+outer_vlan_id))
915
916 actions=[]
917 actions.append(ofp.action.push_vlan(0x8100))
918 if new_outer_vlan_id != -1:
919 actions.append(ofp.action.set_field(ofp.oxm.vlan_vid(0x1000+new_outer_vlan_id)))
920 else:
921 actions.append(ofp.action.set_field(ofp.oxm.vlan_vid(0x1000+outer_vlan_id)))
922
923 request = ofp.message.flow_add(
924 table_id=11,
925 cookie=42,
926 match=match,
927 instructions=[
928 ofp.instruction.apply_actions(
929 actions=actions
930 ),
931 ofp.instruction.goto_table(TERMINATION_FLOW_TABLE)
932 ],
933 priority=0)
934 logging.info("Add vlan 1 double tagged %d-%d packets on port %d and go to table %d" %( outer_vlan_id, inner_vlan_id, of_port, TERMINATION_FLOW_TABLE))
935 ctrl.message_send(request)
936
937 if flag == VLAN_TABLE_FLAG_ONLY_UNTAG:
938 match = ofp.match()
939 match.oxm_list.append(ofp.oxm.in_port(of_port))
940 match.oxm_list.append(ofp.oxm.vlan_vid_masked(0x1000+inner_vlan_id,0x1fff))
941 match.oxm_list.append(ofp.oxm.exp2ByteValue(ofp.oxm.OFDPA_EXP_TYPE_OVID, 0x1000+outer_vlan_id))
942
943 actions=[]
944 request = ofp.message.flow_add(
945 table_id=11,
946 cookie=42,
947 match=match,
948 instructions=[
949 ofp.instruction.apply_actions(
950 actions=actions
951 ),
952 ofp.instruction.goto_table(TERMINATION_FLOW_TABLE)
953 ],
954 priority=0)
955 logging.info("Add vlan 1 double tagged %d-%d packets on port %d and go to table %d" %( outer_vlan_id, inner_vlan_id, of_port, TERMINATION_FLOW_TABLE))
956 ctrl.message_send(request)
957
macauley0f91a3e2015-07-17 18:09:59 +0800958 if send_barrier:
959 do_barrier(ctrl)
960
961 return request
Pierbbdf3782016-08-22 17:58:26 -0700962
Piercf76e802016-09-19 20:16:35 -0700963def add_one_vlan_1_table_flow_pw(ctrl, of_port, tunnel_index, new_outer_vlan_id=-1, outer_vlan_id=1, inner_vlan_id=1, flag=VLAN_TABLE_FLAG_ONLY_TAG, send_barrier=False):
964 # table 11: vlan 1 table
965 # goto to table 13
966 match = ofp.match()
967 match.oxm_list.append(ofp.oxm.in_port(of_port))
968 match.oxm_list.append(ofp.oxm.vlan_vid_masked(0x1000+inner_vlan_id,0x1fff))
969 match.oxm_list.append(ofp.oxm.exp2ByteValue(ofp.oxm.OFDPA_EXP_TYPE_OVID, 0x1000+outer_vlan_id))
970
971 actions=[]
972 actions.append(ofp.action.push_vlan(0x8100))
973 if new_outer_vlan_id != -1:
974 actions.append(ofp.action.set_field(ofp.oxm.vlan_vid(0x1000+new_outer_vlan_id)))
975 else:
976 actions.append(ofp.action.set_field(ofp.oxm.vlan_vid(0x1000+outer_vlan_id)))
977
978 actions.append(ofp.action.set_field(ofp.oxm.exp2ByteValue(exp_type=ofp.oxm.OFDPA_EXP_TYPE_MPLS_TYPE, value=ofp.oxm.VPWS)))
979 actions.append(ofp.action.set_field(ofp.oxm.tunnel_id(tunnel_index + ofp.oxm.TUNNEL_ID_BASE)))
980 # 0x0000nnnn is for UNI interfaces
981 actions.append(ofp.action.set_field(ofp.oxm.exp4ByteValue(exp_type=ofp.oxm.OFDPA_EXP_TYPE_MPLS_L2_PORT, value=0x00000000 + of_port)))
982
983 request = ofp.message.flow_add(
984 table_id=11,
985 cookie=42,
986 match=match,
987 instructions=[
988 ofp.instruction.apply_actions(
989 actions=actions
990 ),
991 ofp.instruction.goto_table(MPLS_L2_PORT_FLOW_TABLE)
992 ],
993 priority=0)
994 logging.info("Add vlan 1 double tagged %d-%d packets on port %d and go to table %d" %( outer_vlan_id, inner_vlan_id, of_port, MPLS_L2_PORT_FLOW_TABLE))
995 ctrl.message_send(request)
996
997 if send_barrier:
998 do_barrier(ctrl)
999
1000 return request
1001
macauley97557232015-07-16 17:28:07 +08001002def add_bridge_flow(ctrl, dst_mac, vlanid, group_id, send_barrier=False):
1003 match = ofp.match()
castroflavio21894482015-12-08 15:29:55 -05001004 priority=500
macauleyfddc4662015-07-27 17:40:30 +08001005 if dst_mac!=None:
castroflavio21894482015-12-08 15:29:55 -05001006 priority=1000
macauleyfddc4662015-07-27 17:40:30 +08001007 match.oxm_list.append(ofp.oxm.eth_dst(dst_mac))
1008
macauley97557232015-07-16 17:28:07 +08001009 match.oxm_list.append(ofp.oxm.vlan_vid(0x1000+vlanid))
macauleyfddc4662015-07-27 17:40:30 +08001010
macauley97557232015-07-16 17:28:07 +08001011 request = ofp.message.flow_add(
1012 table_id=50,
1013 cookie=42,
1014 match=match,
1015 instructions=[
1016 ofp.instruction.write_actions(
1017 actions=[
1018 ofp.action.group(group_id)]),
1019 ofp.instruction.goto_table(60)
1020 ],
1021 buffer_id=ofp.OFP_NO_BUFFER,
castroflavio21894482015-12-08 15:29:55 -05001022 priority=priority)
macauley97557232015-07-16 17:28:07 +08001023
1024 logging.info("Inserting Brdige flow vlan %d, mac %s", vlanid, dst_mac)
1025 ctrl.message_send(request)
1026
1027 if send_barrier:
Pierbbdf3782016-08-22 17:58:26 -07001028 do_barrier(ctrl)
macauley15909e72015-07-17 15:58:57 +08001029
Pierbbdf3782016-08-22 17:58:26 -07001030 return request
macauleyfddc4662015-07-27 17:40:30 +08001031
1032def add_overlay_bridge_flow(ctrl, dst_mac, vnid, group_id, is_group=True, send_barrier=False):
1033 match = ofp.match()
1034 if dst_mac!=None:
1035 match.oxm_list.append(ofp.oxm.eth_dst(dst_mac))
1036
1037 match.oxm_list.append(ofp.oxm.tunnel_id(vnid))
1038 if is_group == True:
1039 actions=[ofp.action.group(group_id)]
1040 else:
1041 actions=[ofp.action.output(group_id)]
1042
1043 request = ofp.message.flow_add(
1044 table_id=50,
1045 cookie=42,
1046 match=match,
1047 instructions=[
1048 ofp.instruction.write_actions(
1049 actions=actions),
1050 ofp.instruction.goto_table(60)
1051 ],
1052 buffer_id=ofp.OFP_NO_BUFFER,
Pierbbdf3782016-08-22 17:58:26 -07001053 priority=1000)
macauleyfddc4662015-07-27 17:40:30 +08001054
1055 logging.info("Inserting Brdige flow vnid %d, mac %s", vnid, dst_mac)
1056 ctrl.message_send(request)
1057
1058 if send_barrier:
Pierbbdf3782016-08-22 17:58:26 -07001059 do_barrier(ctrl)
macauleyfddc4662015-07-27 17:40:30 +08001060
Pierbbdf3782016-08-22 17:58:26 -07001061 return request
1062
macauley_cheng6b133662015-11-09 13:52:39 +08001063def add_termination_flow(ctrl, in_port, eth_type, dst_mac, vlanid, goto_table=None, send_barrier=False):
macauley0f91a3e2015-07-17 18:09:59 +08001064 match = ofp.match()
macauley0f91a3e2015-07-17 18:09:59 +08001065 match.oxm_list.append(ofp.oxm.eth_type(eth_type))
macauleyfddc4662015-07-27 17:40:30 +08001066 if dst_mac[0]&0x01 == 0x01:
1067 match.oxm_list.append(ofp.oxm.eth_dst_masked(dst_mac, [0xff, 0xff, 0xff, 0x80, 0x00, 0x00]))
1068 goto_table=40
1069 else:
macauley53d90fe2015-08-04 17:34:22 +08001070 if in_port!=0:
1071 match.oxm_list.append(ofp.oxm.in_port(in_port))
macauleyfddc4662015-07-27 17:40:30 +08001072 match.oxm_list.append(ofp.oxm.eth_dst(dst_mac))
1073 match.oxm_list.append(ofp.oxm.vlan_vid(0x1000+vlanid))
macauley_cheng6b133662015-11-09 13:52:39 +08001074 if goto_table == None:
1075 goto_table=30
macauley0f91a3e2015-07-17 18:09:59 +08001076
1077 request = ofp.message.flow_add(
1078 table_id=20,
1079 cookie=42,
1080 match=match,
1081 instructions=[
1082 ofp.instruction.goto_table(goto_table)
1083 ],
1084 buffer_id=ofp.OFP_NO_BUFFER,
Pierbbdf3782016-08-22 17:58:26 -07001085 priority=1)
macauley0f91a3e2015-07-17 18:09:59 +08001086
1087 logging.info("Inserting termination flow inport %d, eth_type %lx, vlan %d, mac %s", in_port, eth_type, vlanid, dst_mac)
1088 ctrl.message_send(request)
1089
1090 if send_barrier:
Pierbbdf3782016-08-22 17:58:26 -07001091 do_barrier(ctrl)
macauley0f91a3e2015-07-17 18:09:59 +08001092
Pierbbdf3782016-08-22 17:58:26 -07001093 return request
1094
Alex Yashchuk9f449462017-12-09 18:27:19 +02001095def add_unicast_routing_flow(ctrl, eth_type, dst_ip, mask, action_group_id, vrf=0, send_ctrl=False, send_barrier=False, priority = 1):
macauley0f91a3e2015-07-17 18:09:59 +08001096 match = ofp.match()
1097 match.oxm_list.append(ofp.oxm.eth_type(eth_type))
Alex Yashchuk9f449462017-12-09 18:27:19 +02001098 if config["switch_type"] != 'xpliant' and vrf != 0:
macauley53d90fe2015-08-04 17:34:22 +08001099 match.oxm_list.append(ofp.oxm.exp2ByteValue(ofp.oxm.OFDPA_EXP_TYPE_VRF, vrf))
macauley0f91a3e2015-07-17 18:09:59 +08001100
Flavio Castroaf2b4502016-02-02 17:41:32 -05001101 match.oxm_list.append(ofp.oxm.ipv4_dst_masked(dst_ip, mask))
1102
1103 instructions = []
1104 instructions.append(ofp.instruction.goto_table(60))
1105 if send_ctrl:
Pier265ad5f2017-02-28 17:46:28 +01001106 instructions.append(ofp.instruction.write_actions(
Flavio Castroaf2b4502016-02-02 17:41:32 -05001107 actions=[ofp.action.output( port=ofp.OFPP_CONTROLLER,
1108 max_len=ofp.OFPCML_NO_BUFFER)]))
Pierbbdf3782016-08-22 17:58:26 -07001109 else:
Flavio Castroaf2b4502016-02-02 17:41:32 -05001110 instructions.append(ofp.instruction.write_actions(
1111 actions=[ofp.action.group(action_group_id)]))
macauley53d90fe2015-08-04 17:34:22 +08001112
macauley0f91a3e2015-07-17 18:09:59 +08001113 request = ofp.message.flow_add(
1114 table_id=30,
1115 cookie=42,
1116 match=match,
Flavio Castroaf2b4502016-02-02 17:41:32 -05001117 instructions=instructions,
macauley0f91a3e2015-07-17 18:09:59 +08001118 buffer_id=ofp.OFP_NO_BUFFER,
Alex Yashchuk9f449462017-12-09 18:27:19 +02001119 priority=priority)
macauley0f91a3e2015-07-17 18:09:59 +08001120
1121 logging.info("Inserting unicast routing flow eth_type %lx, dip %ld",eth_type, dst_ip)
1122 ctrl.message_send(request)
1123
1124 if send_barrier:
Pierbbdf3782016-08-22 17:58:26 -07001125 do_barrier(ctrl)
macauley0f91a3e2015-07-17 18:09:59 +08001126
Flavio Castro9debaaa2016-07-26 19:37:50 -07001127 return request
Flavio Castrod8f8af22015-12-02 18:19:26 -05001128
Pier1e4e98e2016-10-26 14:36:05 -07001129def add_unicast_v6_routing_flow(ctrl, eth_type, dst_ip, mask, action_group_id, vrf=0, send_ctrl=False, send_barrier=False):
1130 match = ofp.match()
1131 match.oxm_list.append(ofp.oxm.eth_type(eth_type))
1132 if vrf != 0:
1133 match.oxm_list.append(ofp.oxm.exp2ByteValue(ofp.oxm.OFDPA_EXP_TYPE_VRF, vrf))
1134
1135 match.oxm_list.append(ofp.oxm.ipv6_dst_masked(parse_ipv6(dst_ip), parse_ipv6(mask)))
1136
1137 instructions = []
1138 instructions.append(ofp.instruction.goto_table(60))
1139 if send_ctrl:
Pier265ad5f2017-02-28 17:46:28 +01001140 instructions.append(ofp.instruction.write_actions(
Pier1e4e98e2016-10-26 14:36:05 -07001141 actions=[ofp.action.output( port=ofp.OFPP_CONTROLLER,
1142 max_len=ofp.OFPCML_NO_BUFFER)]))
1143 else:
1144 instructions.append(ofp.instruction.write_actions(
1145 actions=[ofp.action.group(action_group_id)]))
1146
1147 request = ofp.message.flow_add(
1148 table_id=30,
1149 cookie=42,
1150 match=match,
1151 instructions=instructions,
1152 buffer_id=ofp.OFP_NO_BUFFER,
1153 priority=1)
1154
1155 logging.info("Inserting unicast routing flow eth_type %lx, dip %s",eth_type, dst_ip)
1156 ctrl.message_send(request)
1157
1158 if send_barrier:
1159 do_barrier(ctrl)
1160
1161 return request
1162
Flavio Castro8ca52542016-04-11 11:24:49 -04001163def add_mpls_flow(ctrl, action_group_id=0x0, label=100 ,ethertype=0x0800, bos=1, vrf=1, goto_table=27, send_barrier=False):
Flavio Castrob702a2f2016-04-10 22:01:48 -04001164 match = ofp.match()
1165 match.oxm_list.append(ofp.oxm.eth_type(0x8847))
1166 match.oxm_list.append(ofp.oxm.mpls_label(label))
1167 match.oxm_list.append(ofp.oxm.mpls_bos(bos))
Pier265ad5f2017-02-28 17:46:28 +01001168 write_actions = []
1169 write_actions.append(ofp.action.group(action_group_id))
1170 apply_actions = []
1171 apply_actions = [ofp.action.dec_mpls_ttl(),
Flavio Castro8ca52542016-04-11 11:24:49 -04001172 ofp.action.set_field(ofp.oxm.exp2ByteValue(exp_type=1, value=vrf))]
Pier265ad5f2017-02-28 17:46:28 +01001173 if (goto_table != 29):
1174 apply_actions.append(ofp.action.set_field(
Flavio Castrod80fbc32016-07-25 15:54:26 -07001175 ofp.oxm.exp2ByteValue(exp_type=23, value=32)))
Pier265ad5f2017-02-28 17:46:28 +01001176 apply_actions.append(ofp.action.copy_ttl_in())
Flavio Castro9debaaa2016-07-26 19:37:50 -07001177
Flavio Castrob702a2f2016-04-10 22:01:48 -04001178 request = ofp.message.flow_add(
1179 table_id=24,
1180 cookie=43,
1181 match=match,
1182 instructions=[
Pier265ad5f2017-02-28 17:46:28 +01001183 ofp.instruction.apply_actions(actions=apply_actions),
1184 ofp.instruction.write_actions(actions=write_actions),
Flavio Castro8ca52542016-04-11 11:24:49 -04001185 ofp.instruction.goto_table(goto_table)
Flavio Castrob702a2f2016-04-10 22:01:48 -04001186 ],
1187 buffer_id=ofp.OFP_NO_BUFFER,
1188 priority=1)
Flavio Castrob702a2f2016-04-10 22:01:48 -04001189 logging.info("Inserting MPLS flow , label %ld", label)
1190 ctrl.message_send(request)
1191
1192 if send_barrier:
1193 do_barrier(ctrl)
1194
1195 return request
1196
Alex Yashchuk9f449462017-12-09 18:27:19 +02001197def xpliant_add_mpls_flow(ctrl, action_group_id=0x0, label=100 ,ethertype=0x0800, bos=1, vrf=1, goto_table=27, send_barrier=False):
1198 match = ofp.match()
1199 match.oxm_list.append(ofp.oxm.eth_type(0x8847))
1200 match.oxm_list.append(ofp.oxm.mpls_label(label))
1201
1202 apply_actions = []
1203 apply_actions.append(ofp.action.group(action_group_id))
1204 apply_actions.append(ofp.action.dec_mpls_ttl())
1205 if (goto_table != 29):
1206 apply_actions.append(ofp.action.pop_mpls(ethertype))
1207
1208 request = ofp.message.flow_add(
1209 table_id=24,
1210 cookie=43,
1211 match=match,
1212 instructions=[
1213 ofp.instruction.apply_actions(actions=apply_actions),
1214 ],
1215 buffer_id=ofp.OFP_NO_BUFFER,
1216 priority=1)
1217 logging.info("Inserting MPLS flow , label %ld", label)
1218 ctrl.message_send(request)
1219
1220 if send_barrier:
1221 do_barrier(ctrl)
1222
1223 return request
1224
Pierf6f28162016-09-22 16:30:52 -07001225def add_mpls_flow_pw(ctrl, action_group_id, label, ethertype, bos, tunnel_index, goto_table=MPLS_TYPE_FLOW_TABLE, popMPLS=True, popL2=False, of_port=0, send_barrier=False):
Pierb5da4c92016-09-21 11:23:35 -07001226 match = ofp.match()
1227 match.oxm_list.append(ofp.oxm.eth_type(0x8847))
1228 match.oxm_list.append(ofp.oxm.mpls_label(label))
1229 match.oxm_list.append(ofp.oxm.mpls_bos(bos))
1230
Pier265ad5f2017-02-28 17:46:28 +01001231 apply_actions = []
1232 write_actions = []
1233 apply_actions.append(ofp.action.dec_mpls_ttl())
Pierf6f28162016-09-22 16:30:52 -07001234 if popMPLS == True:
Pier265ad5f2017-02-28 17:46:28 +01001235 apply_actions.append(ofp.action.copy_ttl_in())
1236 apply_actions.append(ofp.action.pop_mpls(ethertype))
Pierf6f28162016-09-22 16:30:52 -07001237 if bos==1 and popL2 == True:
Pier265ad5f2017-02-28 17:46:28 +01001238 apply_actions.append(ofp.action.ofdpa_pop_l2_header())
1239 apply_actions.append(ofp.action.ofdpa_pop_cw())
1240 apply_actions.append(ofp.action.set_field(ofp.oxm.tunnel_id(tunnel_index + ofp.oxm.TUNNEL_ID_BASE)))
Pierf6f28162016-09-22 16:30:52 -07001241 # 0x0002nnnn is for UNI interfaces
Pier265ad5f2017-02-28 17:46:28 +01001242 apply_actions.append(ofp.action.set_field(ofp.oxm.exp4ByteValue(exp_type=ofp.oxm.OFDPA_EXP_TYPE_MPLS_L2_PORT, value=0x00020000 + of_port)))
1243 apply_actions.append(ofp.action.set_field(ofp.oxm.exp2ByteValue(exp_type=ofp.oxm.OFDPA_EXP_TYPE_MPLS_TYPE, value=ofp.oxm.VPWS)))
1244 write_actions.append(ofp.action.group(action_group_id))
Pierb5da4c92016-09-21 11:23:35 -07001245
1246 request = ofp.message.flow_add(
Pier265ad5f2017-02-28 17:46:28 +01001247 table_id=24,
1248 cookie=43,
1249 match=match,
1250 instructions=[
1251 ofp.instruction.apply_actions(actions=apply_actions),
1252 ofp.instruction.write_actions(actions=write_actions),
1253 ofp.instruction.goto_table(goto_table)
1254 ],
1255 buffer_id=ofp.OFP_NO_BUFFER,
1256 priority=1)
Pierb5da4c92016-09-21 11:23:35 -07001257 logging.info("Inserting MPLS flow , label %ld", label)
1258 ctrl.message_send(request)
1259
1260 if send_barrier:
1261 do_barrier(ctrl)
1262
1263 return request
1264
macauleyfddc4662015-07-27 17:40:30 +08001265def add_mcast4_routing_flow(ctrl, vlan_id, src_ip, src_ip_mask, dst_ip, action_group_id, send_barrier=False):
1266 match = ofp.match()
1267 match.oxm_list.append(ofp.oxm.eth_type(0x0800))
Alex Yashchuk9f449462017-12-09 18:27:19 +02001268 match.oxm_list.append(ofp.oxm.vlan_vid(0x1000 + vlan_id))
macauleyfddc4662015-07-27 17:40:30 +08001269 if src_ip_mask!=0:
1270 match.oxm_list.append(ofp.oxm.ipv4_src_masked(src_ip, src_ip_mask))
1271 else:
1272 match.oxm_list.append(ofp.oxm.ipv4_src(src_ip))
Pierbbdf3782016-08-22 17:58:26 -07001273
macauleyfddc4662015-07-27 17:40:30 +08001274 match.oxm_list.append(ofp.oxm.ipv4_dst(dst_ip))
Pierbbdf3782016-08-22 17:58:26 -07001275
macauleyfddc4662015-07-27 17:40:30 +08001276 request = ofp.message.flow_add(
1277 table_id=40,
1278 cookie=42,
1279 match=match,
1280 instructions=[
1281 ofp.instruction.write_actions(
1282 actions=[ofp.action.group(action_group_id)]),
1283 ofp.instruction.goto_table(60)
1284 ],
1285 buffer_id=ofp.OFP_NO_BUFFER,
Pierbbdf3782016-08-22 17:58:26 -07001286 priority=1)
macauleyfddc4662015-07-27 17:40:30 +08001287
1288 logging.info("Inserting mcast routing flow eth_type %lx, dip %lx, sip %lx, sip_mask %lx",0x0800, dst_ip, src_ip, src_ip_mask)
1289 ctrl.message_send(request)
1290
1291 if send_barrier:
Pierbbdf3782016-08-22 17:58:26 -07001292 do_barrier(ctrl)
macauleyfddc4662015-07-27 17:40:30 +08001293
Pierbbdf3782016-08-22 17:58:26 -07001294 return request
macauley_cheng6b133662015-11-09 13:52:39 +08001295
Pier1e4e98e2016-10-26 14:36:05 -07001296def add_acl_rule(ctrl, eth_type=None, ip_proto=None, send_barrier=False):
1297 match = ofp.match()
1298 if eth_type != None:
1299 match.oxm_list.append(ofp.oxm.eth_type(eth_type))
1300 if ip_proto != None:
1301 match.oxm_list.append(ofp.oxm.ip_proto(ip_proto))
1302
1303 request = ofp.message.flow_add(
1304 table_id=60,
1305 cookie=42,
1306 match=match,
1307 instructions=[
1308 ofp.instruction.apply_actions(
1309 actions=[ofp.action.output(port=ofp.OFPP_CONTROLLER, max_len=ofp.OFPCML_NO_BUFFER)]
1310 ),
1311 ],
1312 buffer_id=ofp.OFP_NO_BUFFER,
1313 priority=1
1314 )
1315
1316 logging.info("Inserting ACL flow eth_type %lx, ip_proto %ld", eth_type, ip_proto)
1317 ctrl.message_send(request)
1318
1319 if send_barrier:
1320 do_barrier(ctrl)
1321
1322 return request
1323
macauley_cheng6b133662015-11-09 13:52:39 +08001324#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 +08001325def 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 +08001326 match = ofp.match()
1327 match.oxm_list.append(ofp.oxm.eth_type(eth_type))
1328 match.oxm_list.append(ofp.oxm.ipv4_dst(ip_dst))
1329 match.oxm_list.append(ofp.oxm.ip_proto(ip_proto))
1330 match.oxm_list.append(ofp.oxm.tcp_dst(tcp_dst))
Pierbbdf3782016-08-22 17:58:26 -07001331
macauley_cheng6b133662015-11-09 13:52:39 +08001332 request = ofp.message.flow_add(
1333 table_id=28,
1334 cookie=42,
1335 match=match,
1336 instructions=[
1337 ofp.instruction.write_actions(
1338 actions=[ofp.action.set_field(ofp.oxm.ipv4_dst(set_ip_dst)),
1339 ofp.action.set_field(ofp.oxm.tcp_dst(set_tcp_dst)),
1340 ofp.action.group(action_group_id)]),
1341 ofp.instruction.goto_table(60)
1342 ],
1343 buffer_id=ofp.OFP_NO_BUFFER,
Pierbbdf3782016-08-22 17:58:26 -07001344 priority=1)
macauley_cheng6b133662015-11-09 13:52:39 +08001345 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)
1346 ctrl.message_send(request)
1347 return request
macauley_chengeffc20a2015-11-09 16:14:56 +08001348
1349#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
1350def add_snat_flow(ctrl, eth_type, ip_src, ip_proto, tcp_src, set_ip_src, set_tcp_src):
1351 match = ofp.match()
1352 match.oxm_list.append(ofp.oxm.eth_type(eth_type))
1353 match.oxm_list.append(ofp.oxm.ipv4_src(ip_src))
1354 match.oxm_list.append(ofp.oxm.ip_proto(ip_proto))
1355 match.oxm_list.append(ofp.oxm.tcp_src(tcp_src))
Pierbbdf3782016-08-22 17:58:26 -07001356
macauley_chengeffc20a2015-11-09 16:14:56 +08001357 request = ofp.message.flow_add(
1358 table_id=29,
1359 cookie=42,
1360 match=match,
1361 instructions=[
1362 ofp.instruction.write_actions(
1363 actions=[ofp.action.set_field(ofp.oxm.ipv4_src(set_ip_src)),
1364 ofp.action.set_field(ofp.oxm.tcp_src(set_tcp_src))]),
1365 ofp.instruction.goto_table(30)
1366 ],
1367 buffer_id=ofp.OFP_NO_BUFFER,
Pierbbdf3782016-08-22 17:58:26 -07001368 priority=1)
macauley_chengeffc20a2015-11-09 16:14:56 +08001369 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)
1370 ctrl.message_send(request)
1371 return request
Pierbbdf3782016-08-22 17:58:26 -07001372
1373def get_vtap_lport_config_xml(dp_id, lport, phy_port, vlan, vnid, operation='merge'):
macauleyfddc4662015-07-27 17:40:30 +08001374 """
1375 Command Example:
1376 of-agent vtap 10001 ethernet 1/1 vid 1
1377 of-agent vtp 10001 vni 10
1378 """
1379 if vlan != 0:
1380 config_vtap_xml="""
1381 <config>
1382 <capable-switch xmlns="urn:onf:of111:config:yang" xmlns:xc="urn:ietf:params:xml:ns:netconf:base:1.0">
1383 <id>capable-switch-1</id>
1384 <resources>
1385 <port xc:operation="OPERATION">
Pierbbdf3782016-08-22 17:58:26 -07001386 <resource-id >LPORT</resource-id>
macauleyfddc4662015-07-27 17:40:30 +08001387 <features>
1388 <current>
1389 <rate>10Gb</rate>
1390 <medium>fiber</medium>
Pierbbdf3782016-08-22 17:58:26 -07001391 <pause>symmetric</pause>
macauleyfddc4662015-07-27 17:40:30 +08001392 </current>
1393 <advertised>
1394 <rate>10Gb</rate>
1395 <rate>100Gb</rate>
1396 <medium>fiber</medium>
1397 <pause>symmetric</pause>
Pierbbdf3782016-08-22 17:58:26 -07001398 </advertised>
macauleyfddc4662015-07-27 17:40:30 +08001399 <supported>
1400 <rate>10Gb</rate>
1401 <rate>100Gb</rate>
1402 <medium>fiber</medium>
1403 <pause>symmetric</pause>
Pierbbdf3782016-08-22 17:58:26 -07001404 </supported>
macauleyfddc4662015-07-27 17:40:30 +08001405 <advertised-peer>
1406 <rate>10Gb</rate>
1407 <rate>100Gb</rate>
1408 <medium>fiber</medium>
1409 <pause>symmetric</pause>
Pierbbdf3782016-08-22 17:58:26 -07001410 </advertised-peer>
macauleyfddc4662015-07-27 17:40:30 +08001411 </features>
1412 <ofdpa10:vtap xmlns:ofdpa10="urn:bcm:ofdpa10:accton01" xc:operation="OPERATION">
1413 <ofdpa10:phy-port>PHY_PORT</ofdpa10:phy-port>
1414 <ofdpa10:vid>VLAN_ID</ofdpa10:vid>
1415 <ofdpa10:vni>VNID</ofdpa10:vni>
1416 </ofdpa10:vtap>
Pierbbdf3782016-08-22 17:58:26 -07001417 </port>
macauleyfddc4662015-07-27 17:40:30 +08001418 </resources>
1419 <logical-switches>
1420 <switch>
1421 <id>DATAPATH_ID</id>
1422 <datapath-id>DATAPATH_ID</datapath-id>
1423 <resources>
1424 <port xc:operation="OPERATION">LPORT</port>
1425 </resources>
1426 </switch>
1427 </logical-switches>
1428 </capable-switch>
1429 </config>
Pierbbdf3782016-08-22 17:58:26 -07001430 """
macauleyfddc4662015-07-27 17:40:30 +08001431 else:
1432 config_vtap_xml="""
1433 <config>
1434 <capable-switch xmlns="urn:onf:of111:config:yang" xmlns:xc="urn:ietf:params:xml:ns:netconf:base:1.0">
1435 <id>capable-switch-1</id>
1436 <resources>
1437 <port xc:operation="OPERATION">
Pierbbdf3782016-08-22 17:58:26 -07001438 <resource-id >LPORT</resource-id>
macauleyfddc4662015-07-27 17:40:30 +08001439 <features>
1440 <current>
1441 <rate>10Gb</rate>
1442 <medium>fiber</medium>
Pierbbdf3782016-08-22 17:58:26 -07001443 <pause>symmetric</pause>
macauleyfddc4662015-07-27 17:40:30 +08001444 </current>
1445 <advertised>
1446 <rate>10Gb</rate>
1447 <rate>100Gb</rate>
1448 <medium>fiber</medium>
1449 <pause>symmetric</pause>
Pierbbdf3782016-08-22 17:58:26 -07001450 </advertised>
macauleyfddc4662015-07-27 17:40:30 +08001451 <supported>
1452 <rate>10Gb</rate>
1453 <rate>100Gb</rate>
1454 <medium>fiber</medium>
1455 <pause>symmetric</pause>
Pierbbdf3782016-08-22 17:58:26 -07001456 </supported>
macauleyfddc4662015-07-27 17:40:30 +08001457 <advertised-peer>
1458 <rate>10Gb</rate>
1459 <rate>100Gb</rate>
1460 <medium>fiber</medium>
1461 <pause>symmetric</pause>
Pierbbdf3782016-08-22 17:58:26 -07001462 </advertised-peer>
macauleyfddc4662015-07-27 17:40:30 +08001463 </features>
1464 <ofdpa10:vtap xmlns:ofdpa10="urn:bcm:ofdpa10:accton01" xc:operation="OPERATION">
1465 <ofdpa10:phy-port>PHY_PORT</ofdpa10:phy-port>
1466 <ofdpa10:vni>VNID</ofdpa10:vni>
1467 </ofdpa10:vtap>
Pierbbdf3782016-08-22 17:58:26 -07001468 </port>
macauleyfddc4662015-07-27 17:40:30 +08001469 </resources>
1470 <logical-switches>
1471 <switch>
1472 <id>DATAPATH_ID</id>
1473 <datapath-id>DATAPATH_ID</datapath-id>
1474 <resources>
1475 <port xc:operation="OPERATION">LPORT</port>
1476 </resources>
1477 </switch>
1478 </logical-switches>
1479 </capable-switch>
1480 </config>
Pierbbdf3782016-08-22 17:58:26 -07001481 """
1482 str_datapath_id_f= "{:016x}".format(dp_id)
1483 str_datapath_id=':'.join([str_datapath_id_f[i:i+2] for i in range(0, len(str_datapath_id_f), 2)])
1484 config_vtap_xml=config_vtap_xml.replace("DATAPATH_ID", str_datapath_id)
1485 config_vtap_xml=config_vtap_xml.replace("LPORT", str(int(lport)))
1486 config_vtap_xml=config_vtap_xml.replace("PHY_PORT", str(phy_port))
1487 config_vtap_xml=config_vtap_xml.replace("VLAN_ID", str(vlan))
macauleyfddc4662015-07-27 17:40:30 +08001488 config_vtap_xml=config_vtap_xml.replace("VNID", str(vnid))
1489 config_vtap_xml=config_vtap_xml.replace("OPERATION", str(operation))
1490 return config_vtap_xml
Pierbbdf3782016-08-22 17:58:26 -07001491
1492def get_vtep_lport_config_xml(dp_id, lport, src_ip, dst_ip, next_hop_id, vnid, udp_src_port=6633, ttl=25, operation='merge'):
macauleyfddc4662015-07-27 17:40:30 +08001493 """
1494 Command Example:
1495 of-agent vtep 10002 source user-input-src-ip destination user-input-dst-ip udp-source-port 6633 nexthop 2 ttl 25
Pierbbdf3782016-08-22 17:58:26 -07001496 of-agent vtp 10001 vni 10
macauleyfddc4662015-07-27 17:40:30 +08001497 """
1498
1499 config_vtep_xml="""
1500 <config>
1501 <capable-switch xmlns="urn:onf:of111:config:yang" xmlns:xc="urn:ietf:params:xml:ns:netconf:base:1.0">
1502 <id>capable-switch-1</id>
1503 <resources>
1504 <port xc:operation="OPERATION">
Pierbbdf3782016-08-22 17:58:26 -07001505 <resource-id>LPORT</resource-id>
macauleyfddc4662015-07-27 17:40:30 +08001506 <features>
1507 <current>
1508 <rate>10Gb</rate>
1509 <medium>fiber</medium>
Pierbbdf3782016-08-22 17:58:26 -07001510 <pause>symmetric</pause>
macauleyfddc4662015-07-27 17:40:30 +08001511 </current>
1512 <advertised>
1513 <rate>10Gb</rate>
1514 <rate>100Gb</rate>
1515 <medium>fiber</medium>
1516 <pause>symmetric</pause>
Pierbbdf3782016-08-22 17:58:26 -07001517 </advertised>
macauleyfddc4662015-07-27 17:40:30 +08001518 <supported>
1519 <rate>10Gb</rate>
1520 <rate>100Gb</rate>
1521 <medium>fiber</medium>
1522 <pause>symmetric</pause>
Pierbbdf3782016-08-22 17:58:26 -07001523 </supported>
macauleyfddc4662015-07-27 17:40:30 +08001524 <advertised-peer>
1525 <rate>10Gb</rate>
1526 <rate>100Gb</rate>
1527 <medium>fiber</medium>
1528 <pause>symmetric</pause>
Pierbbdf3782016-08-22 17:58:26 -07001529 </advertised-peer>
macauleyfddc4662015-07-27 17:40:30 +08001530 </features>
Pier265ad5f2017-02-28 17:46:28 +01001531 <ofdpa10:vtep xmlns:ofdpa10="urn:bcm:ofdpa10:accton01">
1532 <ofdpa10:src-ip>SRC_IP</ofdpa10:src-ip>
1533 <ofdpa10:dest-ip>DST_IP</ofdpa10:dest-ip>
1534 <ofdpa10:udp-src-port>UDP_SRC_PORT</ofdpa10:udp-src-port>
1535 <ofdpa10:vni xc:operation="OPERATION">
macauley25999cf2015-08-07 17:03:24 +08001536 <ofdpa10:id>VNID</ofdpa10:id>
1537 </ofdpa10:vni>
Pier265ad5f2017-02-28 17:46:28 +01001538 <ofdpa10:nexthop-id>NEXT_HOP_ID</ofdpa10:nexthop-id>
1539 <ofdpa10:ttl>TTL</ofdpa10:ttl>
1540 </ofdpa10:vtep>
Pierbbdf3782016-08-22 17:58:26 -07001541 </port>
macauleyfddc4662015-07-27 17:40:30 +08001542 </resources>
1543 <logical-switches>
1544 <switch>
1545 <id>DATAPATH_ID</id>
1546 <datapath-id>DATAPATH_ID</datapath-id>
1547 <resources>
1548 <port xc:operation="OPERATION">LPORT</port>
1549 </resources>
1550 </switch>
1551 </logical-switches>
1552 </capable-switch>
Pierbbdf3782016-08-22 17:58:26 -07001553 </config>
macauleyfddc4662015-07-27 17:40:30 +08001554 """
Pierbbdf3782016-08-22 17:58:26 -07001555 str_datapath_id_f= "{:016x}".format(dp_id)
1556 str_datapath_id=':'.join([str_datapath_id_f[i:i+2] for i in range(0, len(str_datapath_id_f), 2)])
1557 config_vtep_xml=config_vtep_xml.replace("DATAPATH_ID", str_datapath_id)
macauley25999cf2015-08-07 17:03:24 +08001558 config_vtep_xml=config_vtep_xml.replace("LPORT", str(int(lport)))
Pierbbdf3782016-08-22 17:58:26 -07001559 config_vtep_xml=config_vtep_xml.replace("SRC_IP", str(src_ip))
1560 config_vtep_xml=config_vtep_xml.replace("DST_IP", str(dst_ip))
1561 config_vtep_xml=config_vtep_xml.replace("UDP_SRC_PORT", str(udp_src_port))
1562 config_vtep_xml=config_vtep_xml.replace("NEXT_HOP_ID", str(next_hop_id))
1563 config_vtep_xml=config_vtep_xml.replace("TTL", str(ttl))
macauleyfddc4662015-07-27 17:40:30 +08001564 config_vtep_xml=config_vtep_xml.replace("VNID", str(vnid))
Pierbbdf3782016-08-22 17:58:26 -07001565 config_vtep_xml=config_vtep_xml.replace("OPERATION", str(operation))
macauleyfddc4662015-07-27 17:40:30 +08001566
Pierbbdf3782016-08-22 17:58:26 -07001567 return config_vtep_xml
1568
1569def get_next_hop_config_xml(next_hop_id, dst_mac, phy_port, vlan, operation='merge'):
macauleyfddc4662015-07-27 17:40:30 +08001570 #of-agent nexthop 2 destination user-input-dst-mac ethernet 1/2 vid 2
1571 config_nexthop_xml="""
1572 <config>
1573 <of11-config:capable-switch xmlns:of11-config="urn:onf:of111:config:yang" xmlns:xc="urn:ietf:params:xml:ns:netconf:base:1.0">
1574 <ofdpa10:next-hop xmlns:ofdpa10="urn:bcm:ofdpa10:accton01" xc:operation="OPERATION">
1575 <ofdpa10:id>NEXT_HOP_ID</ofdpa10:id>
1576 <ofdpa10:dest-mac>DST_MAC</ofdpa10:dest-mac>
1577 <ofdpa10:phy-port>PHY_PORT</ofdpa10:phy-port>
1578 <ofdpa10:vid>VLAN_ID</ofdpa10:vid>
1579 </ofdpa10:next-hop>
1580 </of11-config:capable-switch>
1581 </config>
1582 """
1583 config_nexthop_xml=config_nexthop_xml.replace("VLAN_ID", str(vlan))
Pierbbdf3782016-08-22 17:58:26 -07001584 config_nexthop_xml=config_nexthop_xml.replace("PHY_PORT", str(phy_port))
1585 config_nexthop_xml=config_nexthop_xml.replace("NEXT_HOP_ID", str(next_hop_id))
1586 config_nexthop_xml=config_nexthop_xml.replace("DST_MAC", str(dst_mac))
1587 config_nexthop_xml=config_nexthop_xml.replace("OPERATION", str(operation))
1588 return config_nexthop_xml
macauleyfddc4662015-07-27 17:40:30 +08001589
Pierbbdf3782016-08-22 17:58:26 -07001590def get_vni_config_xml(vni_id, mcast_ipv4, next_hop_id, operation='merge'):
macauleyfddc4662015-07-27 17:40:30 +08001591 #of-agent vni 10 multicast 224.1.1.1 nexthop 20
Pierbbdf3782016-08-22 17:58:26 -07001592 if mcast_ipv4!=None:
macauleyfddc4662015-07-27 17:40:30 +08001593 config_vni_xml="""
1594 <config>
1595 <of11-config:capable-switch xmlns:of11-config="urn:onf:of111:config:yang" xmlns:xc="urn:ietf:params:xml:ns:netconf:base:1.0">
1596 <ofdpa10:vni xmlns:ofdpa10="urn:bcm:ofdpa10:accton01" xc:operation="OPERATION">
1597 <ofdpa10:id>VNID</ofdpa10:id>
1598 <ofdpa10:vni-multicast-group>MCAST_IP</ofdpa10:vni-multicast-group>
1599 <ofdpa10:multicast-group-nexthop-id>NEXT_HOP_ID</ofdpa10:multicast-group-nexthop-id>
1600 </ofdpa10:vni>
1601 </of11-config:capable-switch>
1602 </config>
Pierbbdf3782016-08-22 17:58:26 -07001603 """
1604 config_vni_xml=config_vni_xml.replace("NEXT_HOP_ID", str(next_hop_id))
1605 config_vni_xml=config_vni_xml.replace("MCAST_IP", str(mcast_ipv4))
macauleyfddc4662015-07-27 17:40:30 +08001606 else:
1607 config_vni_xml="""
1608 <config>
1609 <of11-config:capable-switch xmlns:of11-config="urn:onf:of111:config:yang" xmlns:xc="urn:ietf:params:xml:ns:netconf:base:1.0">
1610 <ofdpa10:vni xmlns:ofdpa10="urn:bcm:ofdpa10:accton01" xc:operation="OPERATION">
1611 <ofdpa10:id>VNID</ofdpa10:id>
1612 </ofdpa10:vni>
1613 </of11-config:capable-switch>
1614 </config>
Pierbbdf3782016-08-22 17:58:26 -07001615 """
1616
1617 config_vni_xml=config_vni_xml.replace("VNID", str(vni_id))
1618 config_vni_xml=config_vni_xml.replace("OPERATION", str(operation))
macauleyfddc4662015-07-27 17:40:30 +08001619 return config_vni_xml
Pierbbdf3782016-08-22 17:58:26 -07001620
1621def get_featureReplay(self):
macauleyfddc4662015-07-27 17:40:30 +08001622 req = ofp.message.features_request()
1623 res, raw = self.controller.transact(req)
Pierbbdf3782016-08-22 17:58:26 -07001624 self.assertIsNotNone(res, "Did not receive a response from the DUT.")
macauleyfddc4662015-07-27 17:40:30 +08001625 self.assertEqual(res.type, ofp.OFPT_FEATURES_REPLY,
1626 ("Unexpected packet type %d received in response to "
1627 "OFPT_FEATURES_REQUEST") % res.type)
Pierbbdf3782016-08-22 17:58:26 -07001628 return res
1629
macauleyfddc4662015-07-27 17:40:30 +08001630def send_edit_config(switch_ip, xml, target='runing'):
1631 NETCONF_ACCOUNT="netconfuser"
1632 NETCONF_PASSWD="netconfuser"
1633 with manager.connect_ssh(host=switch_ip, port=830, username=NETCONF_ACCOUNT, password=NETCONF_PASSWD, hostkey_verify=False ) as m:
1634 try:
Pierbbdf3782016-08-22 17:58:26 -07001635 m.edit_config(target='running',
1636 config=xml,
1637 default_operation='merge',
macauleyfddc4662015-07-27 17:40:30 +08001638 error_option='stop-on-error')
1639
1640 except Exception as e:
1641 logging.info("Fail to set xml %s", xml)
1642 return False
1643
Pier265ad5f2017-02-28 17:46:28 +01001644 #return m.get_config(source='running').data_xml
macauleyfddc4662015-07-27 17:40:30 +08001645 return True
1646
1647def send_delete_config(switch_ip, xml, target='runing'):
1648 NETCONF_ACCOUNT="netconfuser"
1649 NETCONF_PASSWD="netconfuser"
1650 with manager.connect_ssh(host=switch_ip, port=830, username=NETCONF_ACCOUNT, password=NETCONF_PASSWD, hostkey_verify=False ) as m:
1651 try:
Pierbbdf3782016-08-22 17:58:26 -07001652 m.edit_config(target='running',
1653 config=xml,
1654 default_operation='delete',
macauleyfddc4662015-07-27 17:40:30 +08001655 error_option='stop-on-error')
1656
1657 except Exception as e:
1658 logging.info("Fail to set xml %s", xml)
1659 return False
1660
Pier265ad5f2017-02-28 17:46:28 +01001661 #return m.get_config(source='running').data_xml
macauleyfddc4662015-07-27 17:40:30 +08001662 return True
Pierbbdf3782016-08-22 17:58:26 -07001663
macauleyfddc4662015-07-27 17:40:30 +08001664def get_edit_config(switch_ip, target='runing'):
1665 NETCONF_ACCOUNT="netconfuser"
1666 NETCONF_PASSWD="netconfuser"
1667 with manager.connect_ssh(host=switch_ip, port=830, username=NETCONF_ACCOUNT, password=NETCONF_PASSWD, hostkey_verify=False ) as m:
Pier265ad5f2017-02-28 17:46:28 +01001668 return m.get_config(source='running').data_xml
macauleydbff3272015-07-30 14:07:16 +08001669
macauley_cheng67da9262015-08-31 15:18:41 +08001670
1671"""
1672MPLS
1673"""
1674
1675OFDPA_MPLS_SUBTYPE_SHIFT=24
Pierbbdf3782016-08-22 17:58:26 -07001676OFDPA_MPLS_GROUP_SUBTYPE_L2_VPN_LABEL=1
macauley_cheng67da9262015-08-31 15:18:41 +08001677OFDPA_MPLS_GROUP_SUBTYPE_L3_VPN_LABEL=2
1678OFDPA_MPLS_GROUP_SUBTYPE_TUNNEL_LABEL1=3
1679OFDPA_MPLS_GROUP_SUBTYPE_TUNNEL_LABEL2=4
1680OFDPA_MPLS_GROUP_SUBTYPE_SWAP_LABEL=5
1681OFDPA_MPLS_GROUP_SUBTYPE_FAST_FAILOVER_GROUP=6
1682OFDPA_MPLS_GROUP_SUBTYPE_ECMP=8
1683OFDPA_MPLS_GROUP_SUBTYPE_L2_TAG=10
1684
Piercf76e802016-09-19 20:16:35 -07001685
1686
1687
macauley_cheng67da9262015-08-31 15:18:41 +08001688def encode_mpls_interface_group_id(subtype, index):
1689 index=index&0x00ffffff
1690 assert(subtype==0)
1691 return index + (9 << OFDPA_GROUP_TYPE_SHIFT)+(subtype<<OFDPA_MPLS_SUBTYPE_SHIFT)
1692
1693def encode_mpls_label_group_id(subtype, index):
1694 index=index&0x00ffffff
1695 assert(subtype <=5 or subtype==0)
1696 #1: l2 vpn label
1697 #2: l3 vpn label
1698 #3: mpls tunnel label 1
1699 #4: mpls tunnel lable 2
1700 #5: mpls swap label
Pierbbdf3782016-08-22 17:58:26 -07001701 return index + (9 << OFDPA_GROUP_TYPE_SHIFT)+(subtype<<OFDPA_MPLS_SUBTYPE_SHIFT)
macauley_cheng67da9262015-08-31 15:18:41 +08001702
1703def encode_mpls_forwarding_group_id(subtype, index):
1704 index=index&0x00ffffff
1705 assert(subtype==6 or subtype==8 or subtype==10)
Pierbbdf3782016-08-22 17:58:26 -07001706 return index + (10 << OFDPA_GROUP_TYPE_SHIFT)+(subtype<<OFDPA_MPLS_SUBTYPE_SHIFT)
macauley_cheng67da9262015-08-31 15:18:41 +08001707
1708
Pier1e4e98e2016-10-26 14:36:05 -07001709def add_mpls_intf_group(ctrl, ref_gid, dst_mac, src_mac, vid, index, subtype=0, send_barrier=False):
macauley_cheng67da9262015-08-31 15:18:41 +08001710 action=[]
1711 action.append(ofp.action.set_field(ofp.oxm.eth_src(src_mac)))
1712 action.append(ofp.action.set_field(ofp.oxm.eth_dst(dst_mac)))
Pier265ad5f2017-02-28 17:46:28 +01001713 action.append(ofp.action.set_field(ofp.oxm.vlan_vid(0x1000+vid)))
macauley_cheng67da9262015-08-31 15:18:41 +08001714 action.append(ofp.action.group(ref_gid))
Pierbbdf3782016-08-22 17:58:26 -07001715
macauley_cheng67da9262015-08-31 15:18:41 +08001716 buckets = [ofp.bucket(actions=action)]
1717
1718 mpls_group_id =encode_mpls_interface_group_id(subtype, index)
1719 request = ofp.message.group_add(group_type=ofp.OFPGT_INDIRECT,
1720 group_id=mpls_group_id,
1721 buckets=buckets
1722 )
1723 ctrl.message_send(request)
Pier1e4e98e2016-10-26 14:36:05 -07001724
1725 if send_barrier:
1726 do_barrier(ctrl)
1727
macauley_cheng67da9262015-08-31 15:18:41 +08001728 return mpls_group_id, request
1729
Piercf76e802016-09-19 20:16:35 -07001730def add_mpls_tunnel_label_group(
1731 ctrl,
1732 ref_gid,
1733 subtype,
1734 index,
1735 label,
1736 ):
1737
1738 action=[]
1739 action.append(ofp.action.push_mpls(0x8847))
1740 action.append(ofp.action.set_field(ofp.oxm.mpls_label(label)))
1741 action.append(ofp.action.group(ref_gid))
1742 buckets = [ofp.bucket(actions=action)]
1743
1744 mpls_group_id = encode_mpls_label_group_id(subtype, index)
1745 request = ofp.message.group_add(group_type=ofp.OFPGT_INDIRECT,
1746 group_id=mpls_group_id,
1747 buckets=buckets
1748 )
1749 ctrl.message_send(request)
1750
1751 return mpls_group_id, request
1752
Pierb5da4c92016-09-21 11:23:35 -07001753def add_mpls_swap_label_group(
1754 ctrl,
1755 ref_gid,
1756 subtype,
1757 index,
1758 label,
1759 ):
1760
1761 action=[]
1762 action.append(ofp.action.set_field(ofp.oxm.mpls_label(label)))
1763 action.append(ofp.action.group(ref_gid))
1764 buckets = [ofp.bucket(actions=action)]
1765
1766 mpls_group_id = encode_mpls_label_group_id(subtype, index)
1767 request = ofp.message.group_add(group_type=ofp.OFPGT_INDIRECT,
1768 group_id=mpls_group_id,
1769 buckets=buckets
1770 )
1771 ctrl.message_send(request)
1772
1773 return mpls_group_id, request
1774
Pierbbdf3782016-08-22 17:58:26 -07001775def add_mpls_label_group(ctrl, subtype, index, ref_gid,
macauley_cheng67da9262015-08-31 15:18:41 +08001776 lmep_id=-1,
1777 qos_index=-1,
1778 push_l2_header=False,
1779 push_vlan=False,
1780 push_mpls_header=False,
1781 push_cw=False,
1782 set_mpls_label=None,
1783 set_bos=None,
1784 set_tc=None,
1785 set_tc_from_table=False,
1786 cpy_tc_outward=False,
1787 set_ttl=None,
1788 cpy_ttl_outward=False,
1789 oam_lm_tx_count=False,
Pier1e4e98e2016-10-26 14:36:05 -07001790 set_pri_from_table=False,
1791 send_barrier=False
macauley_cheng67da9262015-08-31 15:18:41 +08001792 ):
1793 """
1794 @ref_gid: only can be mpls intf group or mpls tunnel label 1/2 group
Pierbbdf3782016-08-22 17:58:26 -07001795 """
macauley_cheng67da9262015-08-31 15:18:41 +08001796 action=[]
1797
1798 if push_vlan== True:
1799 action.append(ofp.action.push_vlan(0x8100))
1800 if push_mpls_header== True:
1801 action.append(ofp.action.push_mpls(0x8847))
1802 if set_mpls_label != None:
1803 action.append(ofp.action.set_field(ofp.oxm.mpls_label(set_mpls_label)))
1804 if set_bos != None:
1805 action.append(ofp.action.set_field(ofp.oxm.mpls_bos(set_bos)))
1806 if set_tc != None:
1807 assert(set_tc_from_table==False)
1808 action.append(ofp.action.set_field(ofp.oxm.mpls_tc(set_tc)))
1809 if set_ttl != None:
Pierbbdf3782016-08-22 17:58:26 -07001810 action.append(ofp.action.set_mpls_ttl(set_ttl))
macauley_cheng67da9262015-08-31 15:18:41 +08001811 if cpy_ttl_outward == True:
Pierbbdf3782016-08-22 17:58:26 -07001812 action.append(ofp.action.copy_ttl_out())
macauley_cheng67da9262015-08-31 15:18:41 +08001813 """
1814 ofdpa experimenter
Pierbbdf3782016-08-22 17:58:26 -07001815 """
macauley_cheng67da9262015-08-31 15:18:41 +08001816 if push_l2_header== True:
Pierbbdf3782016-08-22 17:58:26 -07001817 action.append(ofp.action.ofdpa_push_l2_header())
macauley_cheng67da9262015-08-31 15:18:41 +08001818 if set_tc_from_table== True:
1819 assert(qos_index>=0)
1820 assert(set_tc == None)
Pierbbdf3782016-08-22 17:58:26 -07001821 action.append(ofp.action.ofdpa_set_tc_from_table(qos_index))
macauley_cheng67da9262015-08-31 15:18:41 +08001822 if cpy_tc_outward == True:
Pierbbdf3782016-08-22 17:58:26 -07001823 action.append(ofp.action.ofdpa_copy_tc_out())
macauley_cheng67da9262015-08-31 15:18:41 +08001824 if oam_lm_tx_count == True:
Pierbbdf3782016-08-22 17:58:26 -07001825 assert(qos_index>=0 and lmep_id>=0)
1826 action.append(ofp.action.ofdpa_oam_lm_tx_count(lmep_id, qos_index))
macauley_cheng67da9262015-08-31 15:18:41 +08001827 if set_pri_from_table == True:
Pierbbdf3782016-08-22 17:58:26 -07001828 assert(qos_index>=0)
1829 action.append(ofp.action.ofdpa_set_qos_from_table(qos_index))
macauley_cheng67da9262015-08-31 15:18:41 +08001830 if push_cw == True:
1831 action.append(ofp.action.ofdpa_push_cw())
Pierbbdf3782016-08-22 17:58:26 -07001832
1833 action.append(ofp.action.group(ref_gid))
macauley_cheng67da9262015-08-31 15:18:41 +08001834 buckets = [ofp.bucket(actions=action)]
Pierbbdf3782016-08-22 17:58:26 -07001835
macauley_cheng67da9262015-08-31 15:18:41 +08001836 mpls_group_id = encode_mpls_label_group_id(subtype, index)
1837 request = ofp.message.group_add(group_type=ofp.OFPGT_INDIRECT,
1838 group_id=mpls_group_id,
1839 buckets=buckets
1840 )
1841 ctrl.message_send(request)
Pierbbdf3782016-08-22 17:58:26 -07001842
Pier1e4e98e2016-10-26 14:36:05 -07001843 if send_barrier:
1844 do_barrier(ctrl)
1845
Pierbbdf3782016-08-22 17:58:26 -07001846 return mpls_group_id, request
1847
Piercf76e802016-09-19 20:16:35 -07001848def add_mpls_l2_port_flow(ctrl, of_port, mpls_l2_port, tunnel_index, ref_gid, qos_index=0):
1849 """
1850 Only action is Group, which must indicate one of:
1851 MPLS L2 VPN Label or Fast Failover Protection Group.
1852 ref_gid contains this information
1853 """
1854 tunnel_id = tunnel_index + ofp.oxm.TUNNEL_ID_BASE
1855
1856 match = ofp.match()
1857 match.oxm_list.append(ofp.oxm.exp4ByteValue(exp_type=ofp.oxm.OFDPA_EXP_TYPE_MPLS_L2_PORT, value=0x00000000 + of_port))
1858 match.oxm_list.append(ofp.oxm.tunnel_id(tunnel_index + ofp.oxm.TUNNEL_ID_BASE))
1859
Pier23784aa2016-09-19 20:08:21 -07001860
Pier265ad5f2017-02-28 17:46:28 +01001861 write_actions = []
1862 write_actions.append(ofp.action.group(ref_gid))
1863 apply_actions = []
Piercf76e802016-09-19 20:16:35 -07001864 assert(qos_index>=0)
Pier265ad5f2017-02-28 17:46:28 +01001865 apply_actions.append(ofp.action.set_field(ofp.oxm.exp1ByteValue(exp_type=ofp.oxm.OFDPA_EXP_TYPE_QOS_INDEX, value=qos_index)))
Piercf76e802016-09-19 20:16:35 -07001866
1867 request = ofp.message.flow_add(
1868 table_id=MPLS_L2_PORT_FLOW_TABLE,
1869 cookie=42,
1870 match=match,
1871 instructions=[
Pier265ad5f2017-02-28 17:46:28 +01001872 ofp.instruction.apply_actions(actions=apply_actions),
1873 ofp.instruction.write_actions(actions=write_actions),
1874 ofp.instruction.goto_table(MPLS_L2_PORT_PCP_TRUST_FLOW_TABLE)
1875 ],
Piercf76e802016-09-19 20:16:35 -07001876 buffer_id=ofp.OFP_NO_BUFFER,
1877 priority=1)
1878 logging.info("Inserting flow %d mpls_l2_port, %d tunnel_id, action %x group and go to table %d", mpls_l2_port, tunnel_id, ref_gid, MPLS_L2_PORT_DSCP_TRUST_FLOW_TABLE)
1879 ctrl.message_send(request)
1880 return request
1881
1882 return
1883
Pierbbdf3782016-08-22 17:58:26 -07001884def add_mpls_forwarding_group(ctrl, subtype, index, ref_gids,
1885 watch_port=None,
Pier265ad5f2017-02-28 17:46:28 +01001886 watch_group=ofp.OFPP_ANY,
1887 push_vlan=None,
macauley_chengd17ce512015-08-31 17:45:51 +08001888 pop_vlan=None,
macauley_cheng67da9262015-08-31 15:18:41 +08001889 set_vid=None):
1890 assert(subtype == OFDPA_MPLS_GROUP_SUBTYPE_FAST_FAILOVER_GROUP
Pier265ad5f2017-02-28 17:46:28 +01001891 or subtype == OFDPA_MPLS_GROUP_SUBTYPE_ECMP
1892 or subtype == OFDPA_MPLS_GROUP_SUBTYPE_L2_TAG)
macauley_chengd17ce512015-08-31 17:45:51 +08001893
macauley_cheng67da9262015-08-31 15:18:41 +08001894 buckets=[]
1895 if subtype == OFDPA_MPLS_GROUP_SUBTYPE_FAST_FAILOVER_GROUP:
macauley_chengd17ce512015-08-31 17:45:51 +08001896 group_type = ofp.OFPGT_FF
macauley_cheng67da9262015-08-31 15:18:41 +08001897 for gid in ref_gids:
macauley_chengd17ce512015-08-31 17:45:51 +08001898 action=[]
Pierbbdf3782016-08-22 17:58:26 -07001899 action.append(ofp.action.group(gid))
macauley_chengd17ce512015-08-31 17:45:51 +08001900 buckets.append(ofp.bucket(watch_port=watch_port, watch_group=watch_group,actions=action))
1901
macauley_cheng67da9262015-08-31 15:18:41 +08001902 elif subtype == OFDPA_MPLS_GROUP_SUBTYPE_ECMP:
1903 group_type = ofp.OFPGT_SELECT
1904 for gid in ref_gids:
macauley_chengd17ce512015-08-31 17:45:51 +08001905 action=[]
Pierbbdf3782016-08-22 17:58:26 -07001906 action.append(ofp.action.group(gid))
macauley_cheng67da9262015-08-31 15:18:41 +08001907 buckets.append(ofp.bucket(actions=action))
macauley_chengd17ce512015-08-31 17:45:51 +08001908
macauley_cheng67da9262015-08-31 15:18:41 +08001909 elif subtype == OFDPA_MPLS_GROUP_SUBTYPE_L2_TAG:
1910 group_type = ofp.OFPGT_INDIRECT
macauley_chengd17ce512015-08-31 17:45:51 +08001911 action=[]
macauley_cheng67da9262015-08-31 15:18:41 +08001912 if set_vid!=None:
Flavio Castro91d1a552016-05-17 16:59:44 -07001913 action.append(ofp.action.set_field(ofp.oxm.vlan_vid(0x1000+set_vid)))
macauley_cheng67da9262015-08-31 15:18:41 +08001914 if push_vlan!=None:
Pierbbdf3782016-08-22 17:58:26 -07001915 action.append(ofp.action.push_vlan(push_vlan))
macauley_cheng67da9262015-08-31 15:18:41 +08001916 if pop_vlan!=None:
Pierbbdf3782016-08-22 17:58:26 -07001917 action.append(ofp.action.pop_vlan())
1918 action.append(ofp.action.group(ref_gids[0]))
macauley_cheng67da9262015-08-31 15:18:41 +08001919 buckets.append(ofp.bucket(actions=action))
macauley_chengd17ce512015-08-31 17:45:51 +08001920
1921 mpls_group_id = encode_mpls_forwarding_group_id(subtype, index)
macauley_cheng67da9262015-08-31 15:18:41 +08001922 request = ofp.message.group_add(group_type=group_type,
macauley_cheng67da9262015-08-31 15:18:41 +08001923 group_id=mpls_group_id,
1924 buckets=buckets
1925 )
1926 ctrl.message_send(request)
Pierbbdf3782016-08-22 17:58:26 -07001927 return mpls_group_id, request
macauley_chengd17ce512015-08-31 17:45:51 +08001928
1929
macauley_cheng67da9262015-08-31 15:18:41 +08001930"""
Piercf76e802016-09-19 20:16:35 -07001931display
Pierbbdf3782016-08-22 17:58:26 -07001932"""
macauleydbff3272015-07-30 14:07:16 +08001933def print_current_table_flow_stat(ctrl, table_id=0xff):
1934 stat_req=ofp.message.flow_stats_request()
1935 response, pkt = ctrl.transact(stat_req)
1936 if response == None:
1937 print "no response"
1938 return None
1939 print len(response.entries)
1940 for obj in response.entries:
1941 print "match ", obj.match
1942 print "cookie", obj.cookie
1943 print "priority", obj.priority
1944 print "idle_timeout", obj.idle_timeout
1945 print "hard_timeout", obj.hard_timeout
1946 #obj.actions
Flavio Castro167f5bd2015-12-02 19:33:53 -05001947 print "packet count: %lx"%obj.packet_count