macauley | 9755723 | 2015-07-16 17:28:07 +0800 | [diff] [blame] | 1 | import logging |
| 2 | |
| 3 | from oftest import config |
| 4 | import oftest.base_tests as base_tests |
| 5 | import ofp |
| 6 | import time |
| 7 | from oftest.testutils import * |
| 8 | |
macauley | fddc466 | 2015-07-27 17:40:30 +0800 | [diff] [blame] | 9 | from ncclient import manager |
| 10 | import ncclient |
| 11 | |
macauley | 9755723 | 2015-07-16 17:28:07 +0800 | [diff] [blame] | 12 | OFDPA_GROUP_TYPE_SHIFT=28 |
| 13 | OFDPA_VLAN_ID_SHIFT =16 |
macauley | fddc466 | 2015-07-27 17:40:30 +0800 | [diff] [blame] | 14 | OFDPA_TUNNEL_ID_SHIFT =12 |
| 15 | OFDPA_TUNNEL_SUBTYPE_SHIFT=10 |
macauley | 9755723 | 2015-07-16 17:28:07 +0800 | [diff] [blame] | 16 | |
| 17 | #VLAN_TABLE_FLAGS |
| 18 | VLAN_TABLE_FLAG_ONLY_UNTAG=1 |
| 19 | VLAN_TABLE_FLAG_ONLY_TAG =2 |
| 20 | VLAN_TABLE_FLAG_ONLY_BOTH =3 |
| 21 | |
macauley | e8b140e | 2015-08-03 13:35:45 +0800 | [diff] [blame] | 22 | PORT_FLOW_TABLE=0 |
| 23 | VLAN_FLOW_TABLE=10 |
| 24 | TERMINATION_FLOW_TABLE=20 |
| 25 | UCAST_ROUTING_FLOW_TABLE=30 |
| 26 | MCAST_ROUTING_FLOW_TABLE=40 |
| 27 | BRIDGE_FLOW_TABLE=50 |
| 28 | ACL_FLOW_TABLE=60 |
| 29 | |
| 30 | def 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 | |
| 37 | def convertMACtoStr(mac): |
| 38 | if not isinstance(mac, list): |
| 39 | assert(0) |
| 40 | |
| 41 | return ':'.join(['%02X' % x for x in mac]) |
| 42 | |
macauley | 7f89d96 | 2015-08-06 18:13:48 +0800 | [diff] [blame] | 43 | def 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_cheng | 67da926 | 2015-08-31 15:18:41 +0800 | [diff] [blame] | 51 | |
| 52 | def 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) |
macauley | e8b140e | 2015-08-03 13:35:45 +0800 | [diff] [blame] | 61 | |
macauley_cheng | 67da926 | 2015-08-31 15:18:41 +0800 | [diff] [blame] | 62 | 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 | |
| 83 | def 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 | |
macauley | 9755723 | 2015-07-16 17:28:07 +0800 | [diff] [blame] | 101 | def encode_l2_interface_group_id(vlan, id): |
| 102 | return id + (vlan << OFDPA_VLAN_ID_SHIFT) |
| 103 | |
| 104 | def encode_l2_rewrite_group_id(id): |
| 105 | return id + (1 << OFDPA_GROUP_TYPE_SHIFT) |
| 106 | |
| 107 | def encode_l3_unicast_group_id(id): |
| 108 | return id + (2 << OFDPA_GROUP_TYPE_SHIFT) |
| 109 | |
| 110 | def encode_l2_mcast_group_id(vlan, id): |
| 111 | return id + (vlan << OFDPA_VLAN_ID_SHIFT) + (3 << OFDPA_GROUP_TYPE_SHIFT) |
| 112 | |
| 113 | def encode_l2_flood_group_id(vlan, id): |
| 114 | return id + (vlan << OFDPA_VLAN_ID_SHIFT) + (4 << OFDPA_GROUP_TYPE_SHIFT) |
| 115 | |
| 116 | def encode_l3_interface_group_id(id): |
| 117 | return id + (5 << OFDPA_GROUP_TYPE_SHIFT) |
| 118 | |
| 119 | def encode_l3_mcast_group_id(vlan, id): |
| 120 | return id + (vlan << OFDPA_VLAN_ID_SHIFT)+(6 << OFDPA_GROUP_TYPE_SHIFT) |
| 121 | |
| 122 | def encode_l3_ecmp_group_id(id): |
| 123 | return id + (7 << OFDPA_GROUP_TYPE_SHIFT) |
| 124 | |
macauley | fddc466 | 2015-07-27 17:40:30 +0800 | [diff] [blame] | 125 | def 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) |
macauley | 9755723 | 2015-07-16 17:28:07 +0800 | [diff] [blame] | 130 | |
Flavio Castro | d4c44d1 | 2015-12-08 14:44:18 -0500 | [diff] [blame] | 131 | def add_l2_interface_group(ctrl, ports, vlan_id=1, is_tagged=False, send_barrier=False): |
macauley | 9755723 | 2015-07-16 17:28:07 +0800 | [diff] [blame] | 132 | # group table |
| 133 | # set up untag groups for each port |
macauley | 41904ed | 2015-07-16 17:38:35 +0800 | [diff] [blame] | 134 | group_id_list=[] |
macauley | 15909e7 | 2015-07-17 15:58:57 +0800 | [diff] [blame] | 135 | msgs=[] |
macauley | 9755723 | 2015-07-16 17:28:07 +0800 | [diff] [blame] | 136 | for of_port in ports: |
| 137 | # do stuff |
| 138 | group_id = encode_l2_interface_group_id(vlan_id, of_port) |
macauley | 41904ed | 2015-07-16 17:38:35 +0800 | [diff] [blame] | 139 | group_id_list.append(group_id) |
macauley | 9755723 | 2015-07-16 17:28:07 +0800 | [diff] [blame] | 140 | 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) |
macauley | 15909e7 | 2015-07-17 15:58:57 +0800 | [diff] [blame] | 159 | msgs.append(request) |
macauley | 9755723 | 2015-07-16 17:28:07 +0800 | [diff] [blame] | 160 | |
| 161 | if send_barrier: |
| 162 | do_barrier(ctrl) |
macauley | 41904ed | 2015-07-16 17:38:35 +0800 | [diff] [blame] | 163 | |
macauley | 15909e7 | 2015-07-17 15:58:57 +0800 | [diff] [blame] | 164 | return group_id_list, msgs |
macauley | 9755723 | 2015-07-16 17:28:07 +0800 | [diff] [blame] | 165 | |
Flavio Castro | d4c44d1 | 2015-12-08 14:44:18 -0500 | [diff] [blame] | 166 | def add_one_l2_interface_group(ctrl, port, vlan_id=1, is_tagged=False, send_barrier=False): |
macauley | 0f91a3e | 2015-07-17 18:09:59 +0800 | [diff] [blame] | 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 | |
macauley | 9755723 | 2015-07-16 17:28:07 +0800 | [diff] [blame] | 196 | def 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) |
macauley | 15909e7 | 2015-07-17 15:58:57 +0800 | [diff] [blame] | 209 | return request |
macauley | 9755723 | 2015-07-16 17:28:07 +0800 | [diff] [blame] | 210 | |
macauley | 15909e7 | 2015-07-17 15:58:57 +0800 | [diff] [blame] | 211 | def 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)) |
macauley | 9755723 | 2015-07-16 17:28:07 +0800 | [diff] [blame] | 217 | |
macauley | 15909e7 | 2015-07-17 15:58:57 +0800 | [diff] [blame] | 218 | 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 | |
| 226 | def 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_cheng | 93f3fa5 | 2015-09-02 17:57:31 +0800 | [diff] [blame] | 236 | action.append(ofp.action.set_field(ofp.oxm.vlan_vid(vlanid))) |
| 237 | |
macauley | 15909e7 | 2015-07-17 15:58:57 +0800 | [diff] [blame] | 238 | 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 | |
| 250 | def 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 | |
| 274 | def 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 | |
| 292 | def 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 | |
| 305 | def 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 |
macauley | fddc466 | 2015-07-27 17:40:30 +0800 | [diff] [blame] | 317 | |
| 318 | def 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 | |
| 331 | def 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 | |
| 344 | def 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 | |
| 357 | def 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 | |
| 370 | def 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)) |
macauley | dbff327 | 2015-07-30 14:07:16 +0800 | [diff] [blame] | 375 | NEXT_TABLE=50 |
macauley | fddc466 | 2015-07-27 17:40:30 +0800 | [diff] [blame] | 376 | else: |
| 377 | match.oxm_list.append(ofp.oxm.in_port(0)) |
macauley | dbff327 | 2015-07-30 14:07:16 +0800 | [diff] [blame] | 378 | NEXT_TABLE=10 |
macauley | fddc466 | 2015-07-27 17:40:30 +0800 | [diff] [blame] | 379 | |
| 380 | request = ofp.message.flow_add( |
| 381 | table_id=0, |
| 382 | cookie=42, |
| 383 | match=match, |
| 384 | instructions=[ |
macauley | dbff327 | 2015-07-30 14:07:16 +0800 | [diff] [blame] | 385 | ofp.instruction.goto_table(NEXT_TABLE) |
macauley | fddc466 | 2015-07-27 17:40:30 +0800 | [diff] [blame] | 386 | ], |
| 387 | priority=0) |
| 388 | logging.info("Add port table, match port %lx" % 0x10000) |
| 389 | ctrl.message_send(request) |
macauley | dbff327 | 2015-07-30 14:07:16 +0800 | [diff] [blame] | 390 | |
Flavio Castro | d8f8af2 | 2015-12-02 18:19:26 -0500 | [diff] [blame] | 391 | |
| 392 | def pop_vlan_flow(ctrl, ports, vlan_id=1): |
| 393 | # table 10: vlan |
| 394 | # goto to table 20 |
| 395 | msgs=[] |
| 396 | for of_port in ports: |
| 397 | match = ofp.match() |
| 398 | match.oxm_list.append(ofp.oxm.in_port(of_port)) |
| 399 | match.oxm_list.append(ofp.oxm.vlan_vid(0x1000+vlan_id)) |
| 400 | request = ofp.message.flow_add( |
| 401 | table_id=10, |
| 402 | cookie=42, |
| 403 | match=match, |
| 404 | instructions=[ |
| 405 | ofp.instruction.apply_actions( |
| 406 | actions=[ |
| 407 | ofp.action.pop_vlan() |
| 408 | ] |
| 409 | ), |
| 410 | ofp.instruction.goto_table(20) |
| 411 | ], |
| 412 | priority=0) |
| 413 | logging.info("Add vlan %d tagged packets on port %d and go to table 20" %( vlan_id, of_port)) |
| 414 | ctrl.message_send(request) |
| 415 | |
| 416 | |
| 417 | return msgs |
macauley | fddc466 | 2015-07-27 17:40:30 +0800 | [diff] [blame] | 418 | |
macauley | 9755723 | 2015-07-16 17:28:07 +0800 | [diff] [blame] | 419 | def add_vlan_table_flow(ctrl, ports, vlan_id=1, flag=VLAN_TABLE_FLAG_ONLY_BOTH, send_barrier=False): |
| 420 | # table 10: vlan |
| 421 | # goto to table 20 |
macauley | 15909e7 | 2015-07-17 15:58:57 +0800 | [diff] [blame] | 422 | msgs=[] |
macauley | 9755723 | 2015-07-16 17:28:07 +0800 | [diff] [blame] | 423 | for of_port in ports: |
| 424 | if (flag == VLAN_TABLE_FLAG_ONLY_TAG) or (flag == VLAN_TABLE_FLAG_ONLY_BOTH): |
| 425 | match = ofp.match() |
| 426 | match.oxm_list.append(ofp.oxm.in_port(of_port)) |
| 427 | match.oxm_list.append(ofp.oxm.vlan_vid(0x1000+vlan_id)) |
| 428 | request = ofp.message.flow_add( |
| 429 | table_id=10, |
| 430 | cookie=42, |
| 431 | match=match, |
| 432 | instructions=[ |
Flavio Castro | d8f8af2 | 2015-12-02 18:19:26 -0500 | [diff] [blame] | 433 | ofp.instruction.apply_actions( |
| 434 | actions=[ |
| 435 | ofp.action.pop_vlan() |
| 436 | ] |
| 437 | ), |
macauley | 9755723 | 2015-07-16 17:28:07 +0800 | [diff] [blame] | 438 | ofp.instruction.goto_table(20) |
| 439 | ], |
| 440 | priority=0) |
| 441 | logging.info("Add vlan %d tagged packets on port %d and go to table 20" %( vlan_id, of_port)) |
| 442 | ctrl.message_send(request) |
| 443 | |
| 444 | if (flag == VLAN_TABLE_FLAG_ONLY_UNTAG) or (flag == VLAN_TABLE_FLAG_ONLY_BOTH): |
| 445 | match = ofp.match() |
| 446 | match.oxm_list.append(ofp.oxm.in_port(of_port)) |
macauley_cheng | 6b31161 | 2015-09-04 11:32:27 +0800 | [diff] [blame] | 447 | match.oxm_list.append(ofp.oxm.vlan_vid_masked(0, 0xfff)) |
macauley | 9755723 | 2015-07-16 17:28:07 +0800 | [diff] [blame] | 448 | request = ofp.message.flow_add( |
| 449 | table_id=10, |
| 450 | cookie=42, |
| 451 | match=match, |
| 452 | instructions=[ |
| 453 | ofp.instruction.apply_actions( |
| 454 | actions=[ |
| 455 | ofp.action.set_field(ofp.oxm.vlan_vid(0x1000+vlan_id)) |
| 456 | ] |
| 457 | ), |
| 458 | ofp.instruction.goto_table(20) |
| 459 | ], |
| 460 | priority=0) |
| 461 | logging.info("Add vlan %d untagged packets on port %d and go to table 20" % (vlan_id, of_port)) |
| 462 | ctrl.message_send(request) |
macauley | 15909e7 | 2015-07-17 15:58:57 +0800 | [diff] [blame] | 463 | msgs.append(request) |
macauley | 9755723 | 2015-07-16 17:28:07 +0800 | [diff] [blame] | 464 | |
| 465 | if send_barrier: |
| 466 | do_barrier(ctrl) |
| 467 | |
macauley | 15909e7 | 2015-07-17 15:58:57 +0800 | [diff] [blame] | 468 | return msgs |
macauley_cheng | 6e6a612 | 2015-11-16 14:19:18 +0800 | [diff] [blame] | 469 | |
| 470 | def del_vlan_table_flow(ctrl, ports, vlan_id=1, flag=VLAN_TABLE_FLAG_ONLY_BOTH, send_barrier=False): |
| 471 | # table 10: vlan |
| 472 | # goto to table 20 |
| 473 | msgs=[] |
| 474 | for of_port in ports: |
| 475 | if (flag == VLAN_TABLE_FLAG_ONLY_TAG) or (flag == VLAN_TABLE_FLAG_ONLY_BOTH): |
| 476 | match = ofp.match() |
| 477 | match.oxm_list.append(ofp.oxm.in_port(of_port)) |
| 478 | match.oxm_list.append(ofp.oxm.vlan_vid(0x1000+vlan_id)) |
| 479 | request = ofp.message.flow_delete( |
| 480 | table_id=10, |
| 481 | cookie=42, |
| 482 | match=match, |
| 483 | priority=0) |
| 484 | logging.info("Del vlan %d tagged packets on port %d and go to table 20" %( vlan_id, of_port)) |
| 485 | ctrl.message_send(request) |
macauley | 0f91a3e | 2015-07-17 18:09:59 +0800 | [diff] [blame] | 486 | |
macauley_cheng | 6e6a612 | 2015-11-16 14:19:18 +0800 | [diff] [blame] | 487 | if (flag == VLAN_TABLE_FLAG_ONLY_UNTAG) or (flag == VLAN_TABLE_FLAG_ONLY_BOTH): |
| 488 | match = ofp.match() |
| 489 | match.oxm_list.append(ofp.oxm.in_port(of_port)) |
| 490 | match.oxm_list.append(ofp.oxm.vlan_vid_masked(0, 0xfff)) |
| 491 | request = ofp.message.flow_delete( |
| 492 | table_id=10, |
| 493 | cookie=42, |
| 494 | match=match, |
| 495 | priority=0) |
| 496 | logging.info("Del vlan %d untagged packets on port %d and go to table 20" % (vlan_id, of_port)) |
| 497 | ctrl.message_send(request) |
| 498 | msgs.append(request) |
| 499 | |
| 500 | if send_barrier: |
| 501 | do_barrier(ctrl) |
| 502 | |
| 503 | return msgs |
| 504 | |
macauley_cheng | 6b31161 | 2015-09-04 11:32:27 +0800 | [diff] [blame] | 505 | def add_vlan_table_flow_pvid(ctrl, in_port, match_vid=None, pvid=1, send_barrier=False): |
| 506 | """it will tag pack as untagged packet wether it has tagg or not""" |
| 507 | match = ofp.match() |
| 508 | match.oxm_list.append(ofp.oxm.in_port(in_port)) |
| 509 | actions=[] |
| 510 | if match_vid == None: |
| 511 | match.oxm_list.append(ofp.oxm.vlan_vid(0)) |
| 512 | actions.append(ofp.action.set_field(ofp.oxm.vlan_vid(0x1000+pvid))) |
| 513 | goto_table=20 |
| 514 | else: |
| 515 | match.oxm_list.append(ofp.oxm.vlan_vid_masked(0x1000+match_vid, 0x1fff)) |
| 516 | actions.append(ofp.action.push_vlan(0x8100)) |
| 517 | actions.append(ofp.action.set_field(ofp.oxm.vlan_vid(0x1000+pvid))) |
| 518 | goto_table=20 |
| 519 | |
| 520 | request = ofp.message.flow_add( |
| 521 | table_id=10, |
| 522 | cookie=42, |
| 523 | match=match, |
| 524 | instructions=[ |
| 525 | ofp.instruction.apply_actions(actions=actions) |
| 526 | ,ofp.instruction.goto_table(goto_table) |
| 527 | ], |
| 528 | priority=0) |
| 529 | logging.info("Add PVID %d on port %d and go to table %ld" %( pvid, in_port, goto_table)) |
| 530 | ctrl.message_send(request) |
| 531 | |
| 532 | if send_barrier: |
| 533 | do_barrier(ctrl) |
| 534 | |
| 535 | def add_vlan_table_flow_allow_all_vlan(ctrl, in_port, send_barrier=False): |
| 536 | """it st flow allow all vlan tag on this port""" |
| 537 | match = ofp.match() |
| 538 | match.oxm_list.append(ofp.oxm.in_port(in_port)) |
| 539 | match.oxm_list.append(ofp.oxm.vlan_vid_masked(0x1000, 0x1000)) |
| 540 | request = ofp.message.flow_add( |
| 541 | table_id=10, |
| 542 | cookie=42, |
| 543 | match=match, |
| 544 | instructions=[ |
| 545 | ofp.instruction.goto_table(20) |
| 546 | ], |
| 547 | priority=0) |
| 548 | logging.info("Add allow all vlan on port %d " %(in_port)) |
| 549 | ctrl.message_send(request) |
| 550 | |
Flavio Castro | 6d49852 | 2015-12-15 14:05:04 -0500 | [diff] [blame^] | 551 | def add_untag_vlan_table(ctrl, in_port,vlan_id=0x0000, send_barrier=False): |
castroflavio | 8941f9a | 2015-12-11 16:10:20 -0500 | [diff] [blame] | 552 | """it a flow to allow all vlan untag on this port""" |
| 553 | match = ofp.match() |
| 554 | match.oxm_list.append(ofp.oxm.in_port(in_port)) |
Flavio Castro | 6d49852 | 2015-12-15 14:05:04 -0500 | [diff] [blame^] | 555 | match.oxm_list.append(ofp.oxm.vlan_vid(vlan_id)) |
| 556 | actions=[] |
| 557 | #actions.append(ofp.action.push_vlan(0x8100)) |
| 558 | actions.append(ofp.action.set_field(ofp.oxm.vlan_vid(0x100a))) |
castroflavio | 8941f9a | 2015-12-11 16:10:20 -0500 | [diff] [blame] | 559 | request = ofp.message.flow_add( |
| 560 | table_id=10, |
| 561 | cookie=42, |
| 562 | match=match, |
| 563 | instructions=[ |
Flavio Castro | 6d49852 | 2015-12-15 14:05:04 -0500 | [diff] [blame^] | 564 | ofp.instruction.apply_actions( |
| 565 | actions=actions |
| 566 | ), |
castroflavio | 8941f9a | 2015-12-11 16:10:20 -0500 | [diff] [blame] | 567 | ofp.instruction.goto_table(20) |
| 568 | ], |
| 569 | priority=0) |
| 570 | logging.info("Add allow all untag on port %d " %(in_port)) |
Flavio Castro | 6d49852 | 2015-12-15 14:05:04 -0500 | [diff] [blame^] | 571 | print "REQUEST:" |
| 572 | print request.show() |
| 573 | print "END" |
| 574 | |
| 575 | ctrl.message_send(request) |
| 576 | |
| 577 | def add_untag_vlan_table_flow(ctrl, in_port,vlan_id=0x1001, vlan_mask=0x1fff, send_barrier=False): |
| 578 | """it a flow to allow all vlan untag on this port""" |
| 579 | match = ofp.match() |
| 580 | match.oxm_list.append(ofp.oxm.in_port(in_port)) |
| 581 | match.oxm_list.append(ofp.oxm.vlan_vid_masked(vlan_id, vlan_mask)) |
| 582 | actions=[] |
| 583 | #actions.append(ofp.action.push_vlan(0x8100)) |
| 584 | actions.append(ofp.action.set_field(ofp.oxm.vlan_vid(0x100a))) |
| 585 | request = ofp.message.flow_add( |
| 586 | table_id=10, |
| 587 | cookie=42, |
| 588 | match=match, |
| 589 | instructions=[ |
| 590 | ofp.instruction.apply_actions( |
| 591 | actions=actions |
| 592 | ), |
| 593 | ofp.instruction.goto_table(20) |
| 594 | ], |
| 595 | priority=0) |
| 596 | logging.info("Add allow all untag on port %d " %(in_port)) |
| 597 | print "REQUEST:" |
| 598 | print request.show() |
| 599 | print "END" |
| 600 | |
castroflavio | 8941f9a | 2015-12-11 16:10:20 -0500 | [diff] [blame] | 601 | ctrl.message_send(request) |
macauley_cheng | 6b31161 | 2015-09-04 11:32:27 +0800 | [diff] [blame] | 602 | |
macauley | 53d90fe | 2015-08-04 17:34:22 +0800 | [diff] [blame] | 603 | def add_one_vlan_table_flow(ctrl, of_port, vlan_id=1, vrf=0, flag=VLAN_TABLE_FLAG_ONLY_BOTH, send_barrier=False): |
macauley | 0f91a3e | 2015-07-17 18:09:59 +0800 | [diff] [blame] | 604 | # table 10: vlan |
| 605 | # goto to table 20 |
| 606 | if (flag == VLAN_TABLE_FLAG_ONLY_TAG) or (flag == VLAN_TABLE_FLAG_ONLY_BOTH): |
| 607 | match = ofp.match() |
| 608 | match.oxm_list.append(ofp.oxm.in_port(of_port)) |
| 609 | match.oxm_list.append(ofp.oxm.vlan_vid(0x1000+vlan_id)) |
macauley | 7f89d96 | 2015-08-06 18:13:48 +0800 | [diff] [blame] | 610 | |
| 611 | actions=[] |
| 612 | if vrf!=0: |
| 613 | actions.append(ofp.action.set_field(ofp.oxm.exp2ByteValue(exp_type=1, value=vrf))) |
| 614 | |
Flavio Castro | 6d49852 | 2015-12-15 14:05:04 -0500 | [diff] [blame^] | 615 | #actions.append(ofp.action.set_field(ofp.oxm.vlan_vid(value=vlan_id))) |
macauley | 7f89d96 | 2015-08-06 18:13:48 +0800 | [diff] [blame] | 616 | |
macauley | 0f91a3e | 2015-07-17 18:09:59 +0800 | [diff] [blame] | 617 | request = ofp.message.flow_add( |
| 618 | table_id=10, |
| 619 | cookie=42, |
| 620 | match=match, |
| 621 | instructions=[ |
macauley | 53d90fe | 2015-08-04 17:34:22 +0800 | [diff] [blame] | 622 | ofp.instruction.apply_actions( |
macauley | 7f89d96 | 2015-08-06 18:13:48 +0800 | [diff] [blame] | 623 | actions=actions |
macauley | 53d90fe | 2015-08-04 17:34:22 +0800 | [diff] [blame] | 624 | ), |
| 625 | ofp.instruction.goto_table(20) |
macauley | 0f91a3e | 2015-07-17 18:09:59 +0800 | [diff] [blame] | 626 | ], |
| 627 | priority=0) |
| 628 | logging.info("Add vlan %d tagged packets on port %d and go to table 20" %( vlan_id, of_port)) |
| 629 | ctrl.message_send(request) |
| 630 | |
| 631 | if (flag == VLAN_TABLE_FLAG_ONLY_UNTAG) or (flag == VLAN_TABLE_FLAG_ONLY_BOTH): |
| 632 | match = ofp.match() |
| 633 | match.oxm_list.append(ofp.oxm.in_port(of_port)) |
| 634 | match.oxm_list.append(ofp.oxm.vlan_vid(0)) |
macauley | 53d90fe | 2015-08-04 17:34:22 +0800 | [diff] [blame] | 635 | |
macauley | 7f89d96 | 2015-08-06 18:13:48 +0800 | [diff] [blame] | 636 | actions=[] |
| 637 | if vrf!=0: |
| 638 | actions.append(ofp.action.set_field(ofp.oxm.exp2ByteValue(exp_type=1, value=vrf))) |
| 639 | |
| 640 | actions.append(ofp.action.set_field(ofp.oxm.vlan_vid(0x1000+vlan_id))) |
| 641 | |
macauley | 0f91a3e | 2015-07-17 18:09:59 +0800 | [diff] [blame] | 642 | request = ofp.message.flow_add( |
| 643 | table_id=10, |
| 644 | cookie=42, |
| 645 | match=match, |
| 646 | instructions=[ |
| 647 | ofp.instruction.apply_actions( |
macauley | 7f89d96 | 2015-08-06 18:13:48 +0800 | [diff] [blame] | 648 | actions=actions |
macauley | 0f91a3e | 2015-07-17 18:09:59 +0800 | [diff] [blame] | 649 | ), |
| 650 | ofp.instruction.goto_table(20) |
| 651 | ], |
| 652 | priority=0) |
| 653 | logging.info("Add vlan %d untagged packets on port %d and go to table 20" % (vlan_id, of_port)) |
| 654 | ctrl.message_send(request) |
| 655 | |
| 656 | if send_barrier: |
| 657 | do_barrier(ctrl) |
| 658 | |
| 659 | return request |
macauley | 15909e7 | 2015-07-17 15:58:57 +0800 | [diff] [blame] | 660 | |
macauley | 9755723 | 2015-07-16 17:28:07 +0800 | [diff] [blame] | 661 | def add_bridge_flow(ctrl, dst_mac, vlanid, group_id, send_barrier=False): |
| 662 | match = ofp.match() |
castroflavio | 2189448 | 2015-12-08 15:29:55 -0500 | [diff] [blame] | 663 | priority=500 |
macauley | fddc466 | 2015-07-27 17:40:30 +0800 | [diff] [blame] | 664 | if dst_mac!=None: |
castroflavio | 2189448 | 2015-12-08 15:29:55 -0500 | [diff] [blame] | 665 | priority=1000 |
macauley | fddc466 | 2015-07-27 17:40:30 +0800 | [diff] [blame] | 666 | match.oxm_list.append(ofp.oxm.eth_dst(dst_mac)) |
| 667 | |
macauley | 9755723 | 2015-07-16 17:28:07 +0800 | [diff] [blame] | 668 | match.oxm_list.append(ofp.oxm.vlan_vid(0x1000+vlanid)) |
macauley | fddc466 | 2015-07-27 17:40:30 +0800 | [diff] [blame] | 669 | |
macauley | 9755723 | 2015-07-16 17:28:07 +0800 | [diff] [blame] | 670 | request = ofp.message.flow_add( |
| 671 | table_id=50, |
| 672 | cookie=42, |
| 673 | match=match, |
| 674 | instructions=[ |
| 675 | ofp.instruction.write_actions( |
| 676 | actions=[ |
| 677 | ofp.action.group(group_id)]), |
| 678 | ofp.instruction.goto_table(60) |
| 679 | ], |
| 680 | buffer_id=ofp.OFP_NO_BUFFER, |
castroflavio | 2189448 | 2015-12-08 15:29:55 -0500 | [diff] [blame] | 681 | priority=priority) |
macauley | 9755723 | 2015-07-16 17:28:07 +0800 | [diff] [blame] | 682 | |
| 683 | logging.info("Inserting Brdige flow vlan %d, mac %s", vlanid, dst_mac) |
| 684 | ctrl.message_send(request) |
| 685 | |
| 686 | if send_barrier: |
macauley | 15909e7 | 2015-07-17 15:58:57 +0800 | [diff] [blame] | 687 | do_barrier(ctrl) |
| 688 | |
macauley | 0f91a3e | 2015-07-17 18:09:59 +0800 | [diff] [blame] | 689 | return request |
macauley | fddc466 | 2015-07-27 17:40:30 +0800 | [diff] [blame] | 690 | |
| 691 | def add_overlay_bridge_flow(ctrl, dst_mac, vnid, group_id, is_group=True, send_barrier=False): |
| 692 | match = ofp.match() |
| 693 | if dst_mac!=None: |
| 694 | match.oxm_list.append(ofp.oxm.eth_dst(dst_mac)) |
| 695 | |
| 696 | match.oxm_list.append(ofp.oxm.tunnel_id(vnid)) |
| 697 | if is_group == True: |
| 698 | actions=[ofp.action.group(group_id)] |
| 699 | else: |
| 700 | actions=[ofp.action.output(group_id)] |
| 701 | |
| 702 | request = ofp.message.flow_add( |
| 703 | table_id=50, |
| 704 | cookie=42, |
| 705 | match=match, |
| 706 | instructions=[ |
| 707 | ofp.instruction.write_actions( |
| 708 | actions=actions), |
| 709 | ofp.instruction.goto_table(60) |
| 710 | ], |
| 711 | buffer_id=ofp.OFP_NO_BUFFER, |
| 712 | priority=1000) |
| 713 | |
| 714 | logging.info("Inserting Brdige flow vnid %d, mac %s", vnid, dst_mac) |
| 715 | ctrl.message_send(request) |
| 716 | |
| 717 | if send_barrier: |
| 718 | do_barrier(ctrl) |
| 719 | |
| 720 | return request |
macauley | 0f91a3e | 2015-07-17 18:09:59 +0800 | [diff] [blame] | 721 | |
macauley_cheng | 6b13366 | 2015-11-09 13:52:39 +0800 | [diff] [blame] | 722 | def add_termination_flow(ctrl, in_port, eth_type, dst_mac, vlanid, goto_table=None, send_barrier=False): |
macauley | 0f91a3e | 2015-07-17 18:09:59 +0800 | [diff] [blame] | 723 | match = ofp.match() |
macauley | 0f91a3e | 2015-07-17 18:09:59 +0800 | [diff] [blame] | 724 | match.oxm_list.append(ofp.oxm.eth_type(eth_type)) |
macauley | fddc466 | 2015-07-27 17:40:30 +0800 | [diff] [blame] | 725 | if dst_mac[0]&0x01 == 0x01: |
| 726 | match.oxm_list.append(ofp.oxm.eth_dst_masked(dst_mac, [0xff, 0xff, 0xff, 0x80, 0x00, 0x00])) |
| 727 | goto_table=40 |
| 728 | else: |
macauley | 53d90fe | 2015-08-04 17:34:22 +0800 | [diff] [blame] | 729 | if in_port!=0: |
| 730 | match.oxm_list.append(ofp.oxm.in_port(in_port)) |
macauley | fddc466 | 2015-07-27 17:40:30 +0800 | [diff] [blame] | 731 | match.oxm_list.append(ofp.oxm.eth_dst(dst_mac)) |
| 732 | match.oxm_list.append(ofp.oxm.vlan_vid(0x1000+vlanid)) |
macauley_cheng | 6b13366 | 2015-11-09 13:52:39 +0800 | [diff] [blame] | 733 | if goto_table == None: |
| 734 | goto_table=30 |
macauley | 0f91a3e | 2015-07-17 18:09:59 +0800 | [diff] [blame] | 735 | |
| 736 | request = ofp.message.flow_add( |
| 737 | table_id=20, |
| 738 | cookie=42, |
| 739 | match=match, |
| 740 | instructions=[ |
| 741 | ofp.instruction.goto_table(goto_table) |
| 742 | ], |
| 743 | buffer_id=ofp.OFP_NO_BUFFER, |
| 744 | priority=1) |
| 745 | |
| 746 | logging.info("Inserting termination flow inport %d, eth_type %lx, vlan %d, mac %s", in_port, eth_type, vlanid, dst_mac) |
| 747 | ctrl.message_send(request) |
| 748 | |
| 749 | if send_barrier: |
| 750 | do_barrier(ctrl) |
| 751 | |
| 752 | return request |
| 753 | |
macauley | 53d90fe | 2015-08-04 17:34:22 +0800 | [diff] [blame] | 754 | def add_unicast_routing_flow(ctrl, eth_type, dst_ip, mask, action_group_id, vrf=0, send_barrier=False): |
macauley | 0f91a3e | 2015-07-17 18:09:59 +0800 | [diff] [blame] | 755 | match = ofp.match() |
| 756 | match.oxm_list.append(ofp.oxm.eth_type(eth_type)) |
macauley | 53d90fe | 2015-08-04 17:34:22 +0800 | [diff] [blame] | 757 | if vrf != 0: |
| 758 | match.oxm_list.append(ofp.oxm.exp2ByteValue(ofp.oxm.OFDPA_EXP_TYPE_VRF, vrf)) |
| 759 | |
macauley | f8b1acd | 2015-07-23 15:13:13 +0800 | [diff] [blame] | 760 | if mask!=0: |
| 761 | match.oxm_list.append(ofp.oxm.ipv4_dst_masked(dst_ip, mask)) |
| 762 | else: |
| 763 | match.oxm_list.append(ofp.oxm.ipv4_dst(dst_ip)) |
macauley | 0f91a3e | 2015-07-17 18:09:59 +0800 | [diff] [blame] | 764 | |
macauley | 53d90fe | 2015-08-04 17:34:22 +0800 | [diff] [blame] | 765 | |
macauley | 0f91a3e | 2015-07-17 18:09:59 +0800 | [diff] [blame] | 766 | request = ofp.message.flow_add( |
| 767 | table_id=30, |
| 768 | cookie=42, |
| 769 | match=match, |
| 770 | instructions=[ |
| 771 | ofp.instruction.write_actions( |
| 772 | actions=[ofp.action.group(action_group_id)]), |
| 773 | ofp.instruction.goto_table(60) |
| 774 | ], |
| 775 | buffer_id=ofp.OFP_NO_BUFFER, |
| 776 | priority=1) |
| 777 | |
| 778 | logging.info("Inserting unicast routing flow eth_type %lx, dip %ld",eth_type, dst_ip) |
| 779 | ctrl.message_send(request) |
| 780 | |
| 781 | if send_barrier: |
| 782 | do_barrier(ctrl) |
| 783 | |
macauley | fddc466 | 2015-07-27 17:40:30 +0800 | [diff] [blame] | 784 | return request |
Flavio Castro | d8f8af2 | 2015-12-02 18:19:26 -0500 | [diff] [blame] | 785 | |
Flavio Castro | 167f5bd | 2015-12-02 19:33:53 -0500 | [diff] [blame] | 786 | def add_mpls_flow(ctrl, action_group_id, label=100 ,ethertype=0x0800, bos=1, send_barrier=False): |
Flavio Castro | d8f8af2 | 2015-12-02 18:19:26 -0500 | [diff] [blame] | 787 | match = ofp.match() |
| 788 | match.oxm_list.append(ofp.oxm.eth_type(0x8847)) |
| 789 | match.oxm_list.append(ofp.oxm.mpls_label(label)) |
| 790 | match.oxm_list.append(ofp.oxm.mpls_bos(bos)) |
| 791 | actions = [ofp.action.dec_mpls_ttl(), |
| 792 | ofp.action.copy_ttl_in(), |
| 793 | ofp.action.pop_mpls(ethertype)] |
| 794 | request = ofp.message.flow_add( |
| 795 | table_id=24, |
| 796 | cookie=43, |
| 797 | match=match, |
| 798 | instructions=[ |
| 799 | ofp.instruction.apply_actions( |
| 800 | actions=actions |
| 801 | ), |
| 802 | ofp.instruction.write_actions( |
| 803 | actions=[ofp.action.group(action_group_id)]), |
| 804 | ofp.instruction.goto_table(60) |
| 805 | ], |
| 806 | buffer_id=ofp.OFP_NO_BUFFER, |
| 807 | priority=1) |
| 808 | |
| 809 | logging.info("Inserting MPLS flow , label %ld", label) |
| 810 | ctrl.message_send(request) |
| 811 | |
| 812 | if send_barrier: |
| 813 | do_barrier(ctrl) |
| 814 | |
| 815 | return request |
| 816 | |
| 817 | |
macauley | fddc466 | 2015-07-27 17:40:30 +0800 | [diff] [blame] | 818 | def add_mcast4_routing_flow(ctrl, vlan_id, src_ip, src_ip_mask, dst_ip, action_group_id, send_barrier=False): |
| 819 | match = ofp.match() |
| 820 | match.oxm_list.append(ofp.oxm.eth_type(0x0800)) |
| 821 | match.oxm_list.append(ofp.oxm.vlan_vid(vlan_id)) |
| 822 | if src_ip_mask!=0: |
| 823 | match.oxm_list.append(ofp.oxm.ipv4_src_masked(src_ip, src_ip_mask)) |
| 824 | else: |
| 825 | match.oxm_list.append(ofp.oxm.ipv4_src(src_ip)) |
| 826 | |
| 827 | match.oxm_list.append(ofp.oxm.ipv4_dst(dst_ip)) |
| 828 | |
| 829 | request = ofp.message.flow_add( |
| 830 | table_id=40, |
| 831 | cookie=42, |
| 832 | match=match, |
| 833 | instructions=[ |
| 834 | ofp.instruction.write_actions( |
| 835 | actions=[ofp.action.group(action_group_id)]), |
| 836 | ofp.instruction.goto_table(60) |
| 837 | ], |
| 838 | buffer_id=ofp.OFP_NO_BUFFER, |
| 839 | priority=1) |
| 840 | |
| 841 | logging.info("Inserting mcast routing flow eth_type %lx, dip %lx, sip %lx, sip_mask %lx",0x0800, dst_ip, src_ip, src_ip_mask) |
| 842 | ctrl.message_send(request) |
| 843 | |
| 844 | if send_barrier: |
| 845 | do_barrier(ctrl) |
| 846 | |
| 847 | return request |
macauley_cheng | 6b13366 | 2015-11-09 13:52:39 +0800 | [diff] [blame] | 848 | |
| 849 | #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_cheng | effc20a | 2015-11-09 16:14:56 +0800 | [diff] [blame] | 850 | def add_dnat_flow(ctrl, eth_type, ip_dst, ip_proto, tcp_dst, set_ip_dst, set_tcp_dst, action_group_id): |
macauley_cheng | 6b13366 | 2015-11-09 13:52:39 +0800 | [diff] [blame] | 851 | match = ofp.match() |
| 852 | match.oxm_list.append(ofp.oxm.eth_type(eth_type)) |
| 853 | match.oxm_list.append(ofp.oxm.ipv4_dst(ip_dst)) |
| 854 | match.oxm_list.append(ofp.oxm.ip_proto(ip_proto)) |
| 855 | match.oxm_list.append(ofp.oxm.tcp_dst(tcp_dst)) |
| 856 | |
| 857 | request = ofp.message.flow_add( |
| 858 | table_id=28, |
| 859 | cookie=42, |
| 860 | match=match, |
| 861 | instructions=[ |
| 862 | ofp.instruction.write_actions( |
| 863 | actions=[ofp.action.set_field(ofp.oxm.ipv4_dst(set_ip_dst)), |
| 864 | ofp.action.set_field(ofp.oxm.tcp_dst(set_tcp_dst)), |
| 865 | ofp.action.group(action_group_id)]), |
| 866 | ofp.instruction.goto_table(60) |
| 867 | ], |
| 868 | buffer_id=ofp.OFP_NO_BUFFER, |
| 869 | priority=1) |
| 870 | 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) |
| 871 | ctrl.message_send(request) |
| 872 | return request |
macauley_cheng | effc20a | 2015-11-09 16:14:56 +0800 | [diff] [blame] | 873 | |
| 874 | #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 |
| 875 | def add_snat_flow(ctrl, eth_type, ip_src, ip_proto, tcp_src, set_ip_src, set_tcp_src): |
| 876 | match = ofp.match() |
| 877 | match.oxm_list.append(ofp.oxm.eth_type(eth_type)) |
| 878 | match.oxm_list.append(ofp.oxm.ipv4_src(ip_src)) |
| 879 | match.oxm_list.append(ofp.oxm.ip_proto(ip_proto)) |
| 880 | match.oxm_list.append(ofp.oxm.tcp_src(tcp_src)) |
| 881 | |
| 882 | request = ofp.message.flow_add( |
| 883 | table_id=29, |
| 884 | cookie=42, |
| 885 | match=match, |
| 886 | instructions=[ |
| 887 | ofp.instruction.write_actions( |
| 888 | actions=[ofp.action.set_field(ofp.oxm.ipv4_src(set_ip_src)), |
| 889 | ofp.action.set_field(ofp.oxm.tcp_src(set_tcp_src))]), |
| 890 | ofp.instruction.goto_table(30) |
| 891 | ], |
| 892 | buffer_id=ofp.OFP_NO_BUFFER, |
| 893 | priority=1) |
| 894 | 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) |
| 895 | ctrl.message_send(request) |
| 896 | return request |
macauley_cheng | 6b13366 | 2015-11-09 13:52:39 +0800 | [diff] [blame] | 897 | |
macauley | fddc466 | 2015-07-27 17:40:30 +0800 | [diff] [blame] | 898 | def get_vtap_lport_config_xml(dp_id, lport, phy_port, vlan, vnid, operation='merge'): |
| 899 | """ |
| 900 | Command Example: |
| 901 | of-agent vtap 10001 ethernet 1/1 vid 1 |
| 902 | of-agent vtp 10001 vni 10 |
| 903 | """ |
| 904 | if vlan != 0: |
| 905 | config_vtap_xml=""" |
| 906 | <config> |
| 907 | <capable-switch xmlns="urn:onf:of111:config:yang" xmlns:xc="urn:ietf:params:xml:ns:netconf:base:1.0"> |
| 908 | <id>capable-switch-1</id> |
| 909 | <resources> |
| 910 | <port xc:operation="OPERATION"> |
| 911 | <resource-id >LPORT</resource-id> |
| 912 | <features> |
| 913 | <current> |
| 914 | <rate>10Gb</rate> |
| 915 | <medium>fiber</medium> |
| 916 | <pause>symmetric</pause> |
| 917 | </current> |
| 918 | <advertised> |
| 919 | <rate>10Gb</rate> |
| 920 | <rate>100Gb</rate> |
| 921 | <medium>fiber</medium> |
| 922 | <pause>symmetric</pause> |
| 923 | </advertised> |
| 924 | <supported> |
| 925 | <rate>10Gb</rate> |
| 926 | <rate>100Gb</rate> |
| 927 | <medium>fiber</medium> |
| 928 | <pause>symmetric</pause> |
| 929 | </supported> |
| 930 | <advertised-peer> |
| 931 | <rate>10Gb</rate> |
| 932 | <rate>100Gb</rate> |
| 933 | <medium>fiber</medium> |
| 934 | <pause>symmetric</pause> |
| 935 | </advertised-peer> |
| 936 | </features> |
| 937 | <ofdpa10:vtap xmlns:ofdpa10="urn:bcm:ofdpa10:accton01" xc:operation="OPERATION"> |
| 938 | <ofdpa10:phy-port>PHY_PORT</ofdpa10:phy-port> |
| 939 | <ofdpa10:vid>VLAN_ID</ofdpa10:vid> |
| 940 | <ofdpa10:vni>VNID</ofdpa10:vni> |
| 941 | </ofdpa10:vtap> |
| 942 | </port> |
| 943 | </resources> |
| 944 | <logical-switches> |
| 945 | <switch> |
| 946 | <id>DATAPATH_ID</id> |
| 947 | <datapath-id>DATAPATH_ID</datapath-id> |
| 948 | <resources> |
| 949 | <port xc:operation="OPERATION">LPORT</port> |
| 950 | </resources> |
| 951 | </switch> |
| 952 | </logical-switches> |
| 953 | </capable-switch> |
| 954 | </config> |
| 955 | """ |
| 956 | else: |
| 957 | config_vtap_xml=""" |
| 958 | <config> |
| 959 | <capable-switch xmlns="urn:onf:of111:config:yang" xmlns:xc="urn:ietf:params:xml:ns:netconf:base:1.0"> |
| 960 | <id>capable-switch-1</id> |
| 961 | <resources> |
| 962 | <port xc:operation="OPERATION"> |
| 963 | <resource-id >LPORT</resource-id> |
| 964 | <features> |
| 965 | <current> |
| 966 | <rate>10Gb</rate> |
| 967 | <medium>fiber</medium> |
| 968 | <pause>symmetric</pause> |
| 969 | </current> |
| 970 | <advertised> |
| 971 | <rate>10Gb</rate> |
| 972 | <rate>100Gb</rate> |
| 973 | <medium>fiber</medium> |
| 974 | <pause>symmetric</pause> |
| 975 | </advertised> |
| 976 | <supported> |
| 977 | <rate>10Gb</rate> |
| 978 | <rate>100Gb</rate> |
| 979 | <medium>fiber</medium> |
| 980 | <pause>symmetric</pause> |
| 981 | </supported> |
| 982 | <advertised-peer> |
| 983 | <rate>10Gb</rate> |
| 984 | <rate>100Gb</rate> |
| 985 | <medium>fiber</medium> |
| 986 | <pause>symmetric</pause> |
| 987 | </advertised-peer> |
| 988 | </features> |
| 989 | <ofdpa10:vtap xmlns:ofdpa10="urn:bcm:ofdpa10:accton01" xc:operation="OPERATION"> |
| 990 | <ofdpa10:phy-port>PHY_PORT</ofdpa10:phy-port> |
| 991 | <ofdpa10:vni>VNID</ofdpa10:vni> |
| 992 | </ofdpa10:vtap> |
| 993 | </port> |
| 994 | </resources> |
| 995 | <logical-switches> |
| 996 | <switch> |
| 997 | <id>DATAPATH_ID</id> |
| 998 | <datapath-id>DATAPATH_ID</datapath-id> |
| 999 | <resources> |
| 1000 | <port xc:operation="OPERATION">LPORT</port> |
| 1001 | </resources> |
| 1002 | </switch> |
| 1003 | </logical-switches> |
| 1004 | </capable-switch> |
| 1005 | </config> |
| 1006 | """ |
| 1007 | str_datapath_id_f= "{:016x}".format(dp_id) |
| 1008 | str_datapath_id=':'.join([str_datapath_id_f[i:i+2] for i in range(0, len(str_datapath_id_f), 2)]) |
| 1009 | config_vtap_xml=config_vtap_xml.replace("DATAPATH_ID", str_datapath_id) |
macauley | 25999cf | 2015-08-07 17:03:24 +0800 | [diff] [blame] | 1010 | config_vtap_xml=config_vtap_xml.replace("LPORT", str(int(lport))) |
macauley | fddc466 | 2015-07-27 17:40:30 +0800 | [diff] [blame] | 1011 | config_vtap_xml=config_vtap_xml.replace("PHY_PORT", str(phy_port)) |
| 1012 | config_vtap_xml=config_vtap_xml.replace("VLAN_ID", str(vlan)) |
| 1013 | config_vtap_xml=config_vtap_xml.replace("VNID", str(vnid)) |
| 1014 | config_vtap_xml=config_vtap_xml.replace("OPERATION", str(operation)) |
| 1015 | return config_vtap_xml |
| 1016 | |
| 1017 | def get_vtep_lport_config_xml(dp_id, lport, src_ip, dst_ip, next_hop_id, vnid, udp_src_port=6633, ttl=25, operation='merge'): |
| 1018 | """ |
| 1019 | Command Example: |
| 1020 | of-agent vtep 10002 source user-input-src-ip destination user-input-dst-ip udp-source-port 6633 nexthop 2 ttl 25 |
| 1021 | of-agent vtp 10001 vni 10 |
| 1022 | """ |
| 1023 | |
| 1024 | config_vtep_xml=""" |
| 1025 | <config> |
| 1026 | <capable-switch xmlns="urn:onf:of111:config:yang" xmlns:xc="urn:ietf:params:xml:ns:netconf:base:1.0"> |
| 1027 | <id>capable-switch-1</id> |
| 1028 | <resources> |
| 1029 | <port xc:operation="OPERATION"> |
| 1030 | <resource-id>LPORT</resource-id> |
| 1031 | <features> |
| 1032 | <current> |
| 1033 | <rate>10Gb</rate> |
| 1034 | <medium>fiber</medium> |
| 1035 | <pause>symmetric</pause> |
| 1036 | </current> |
| 1037 | <advertised> |
| 1038 | <rate>10Gb</rate> |
| 1039 | <rate>100Gb</rate> |
| 1040 | <medium>fiber</medium> |
| 1041 | <pause>symmetric</pause> |
| 1042 | </advertised> |
| 1043 | <supported> |
| 1044 | <rate>10Gb</rate> |
| 1045 | <rate>100Gb</rate> |
| 1046 | <medium>fiber</medium> |
| 1047 | <pause>symmetric</pause> |
| 1048 | </supported> |
| 1049 | <advertised-peer> |
| 1050 | <rate>10Gb</rate> |
| 1051 | <rate>100Gb</rate> |
| 1052 | <medium>fiber</medium> |
| 1053 | <pause>symmetric</pause> |
| 1054 | </advertised-peer> |
| 1055 | </features> |
| 1056 | <ofdpa10:vtep xmlns:ofdpa10="urn:bcm:ofdpa10:accton01"> |
| 1057 | <ofdpa10:src-ip>SRC_IP</ofdpa10:src-ip> |
| 1058 | <ofdpa10:dest-ip>DST_IP</ofdpa10:dest-ip> |
| 1059 | <ofdpa10:udp-src-port>UDP_SRC_PORT</ofdpa10:udp-src-port> |
macauley | 25999cf | 2015-08-07 17:03:24 +0800 | [diff] [blame] | 1060 | <ofdpa10:vni xc:operation="OPERATION"> |
| 1061 | <ofdpa10:id>VNID</ofdpa10:id> |
| 1062 | </ofdpa10:vni> |
macauley | fddc466 | 2015-07-27 17:40:30 +0800 | [diff] [blame] | 1063 | <ofdpa10:nexthop-id>NEXT_HOP_ID</ofdpa10:nexthop-id> |
| 1064 | <ofdpa10:ttl>TTL</ofdpa10:ttl> |
| 1065 | </ofdpa10:vtep> |
| 1066 | </port> |
| 1067 | </resources> |
| 1068 | <logical-switches> |
| 1069 | <switch> |
| 1070 | <id>DATAPATH_ID</id> |
| 1071 | <datapath-id>DATAPATH_ID</datapath-id> |
| 1072 | <resources> |
| 1073 | <port xc:operation="OPERATION">LPORT</port> |
| 1074 | </resources> |
| 1075 | </switch> |
| 1076 | </logical-switches> |
| 1077 | </capable-switch> |
| 1078 | </config> |
| 1079 | """ |
| 1080 | str_datapath_id_f= "{:016x}".format(dp_id) |
| 1081 | str_datapath_id=':'.join([str_datapath_id_f[i:i+2] for i in range(0, len(str_datapath_id_f), 2)]) |
| 1082 | config_vtep_xml=config_vtep_xml.replace("DATAPATH_ID", str_datapath_id) |
macauley | 25999cf | 2015-08-07 17:03:24 +0800 | [diff] [blame] | 1083 | config_vtep_xml=config_vtep_xml.replace("LPORT", str(int(lport))) |
macauley | fddc466 | 2015-07-27 17:40:30 +0800 | [diff] [blame] | 1084 | config_vtep_xml=config_vtep_xml.replace("SRC_IP", str(src_ip)) |
| 1085 | config_vtep_xml=config_vtep_xml.replace("DST_IP", str(dst_ip)) |
| 1086 | config_vtep_xml=config_vtep_xml.replace("UDP_SRC_PORT", str(udp_src_port)) |
| 1087 | config_vtep_xml=config_vtep_xml.replace("NEXT_HOP_ID", str(next_hop_id)) |
| 1088 | config_vtep_xml=config_vtep_xml.replace("TTL", str(ttl)) |
| 1089 | config_vtep_xml=config_vtep_xml.replace("VNID", str(vnid)) |
| 1090 | config_vtep_xml=config_vtep_xml.replace("OPERATION", str(operation)) |
| 1091 | |
| 1092 | return config_vtep_xml |
| 1093 | |
| 1094 | def get_next_hop_config_xml(next_hop_id, dst_mac, phy_port, vlan, operation='merge'): |
| 1095 | #of-agent nexthop 2 destination user-input-dst-mac ethernet 1/2 vid 2 |
| 1096 | config_nexthop_xml=""" |
| 1097 | <config> |
| 1098 | <of11-config:capable-switch xmlns:of11-config="urn:onf:of111:config:yang" xmlns:xc="urn:ietf:params:xml:ns:netconf:base:1.0"> |
| 1099 | <ofdpa10:next-hop xmlns:ofdpa10="urn:bcm:ofdpa10:accton01" xc:operation="OPERATION"> |
| 1100 | <ofdpa10:id>NEXT_HOP_ID</ofdpa10:id> |
| 1101 | <ofdpa10:dest-mac>DST_MAC</ofdpa10:dest-mac> |
| 1102 | <ofdpa10:phy-port>PHY_PORT</ofdpa10:phy-port> |
| 1103 | <ofdpa10:vid>VLAN_ID</ofdpa10:vid> |
| 1104 | </ofdpa10:next-hop> |
| 1105 | </of11-config:capable-switch> |
| 1106 | </config> |
| 1107 | """ |
| 1108 | config_nexthop_xml=config_nexthop_xml.replace("VLAN_ID", str(vlan)) |
| 1109 | config_nexthop_xml=config_nexthop_xml.replace("PHY_PORT", str(phy_port)) |
| 1110 | config_nexthop_xml=config_nexthop_xml.replace("NEXT_HOP_ID", str(next_hop_id)) |
| 1111 | config_nexthop_xml=config_nexthop_xml.replace("DST_MAC", str(dst_mac)) |
| 1112 | config_nexthop_xml=config_nexthop_xml.replace("OPERATION", str(operation)) |
| 1113 | return config_nexthop_xml |
| 1114 | |
| 1115 | def get_vni_config_xml(vni_id, mcast_ipv4, next_hop_id, operation='merge'): |
| 1116 | #of-agent vni 10 multicast 224.1.1.1 nexthop 20 |
| 1117 | if mcast_ipv4!=None: |
| 1118 | config_vni_xml=""" |
| 1119 | <config> |
| 1120 | <of11-config:capable-switch xmlns:of11-config="urn:onf:of111:config:yang" xmlns:xc="urn:ietf:params:xml:ns:netconf:base:1.0"> |
| 1121 | <ofdpa10:vni xmlns:ofdpa10="urn:bcm:ofdpa10:accton01" xc:operation="OPERATION"> |
| 1122 | <ofdpa10:id>VNID</ofdpa10:id> |
| 1123 | <ofdpa10:vni-multicast-group>MCAST_IP</ofdpa10:vni-multicast-group> |
| 1124 | <ofdpa10:multicast-group-nexthop-id>NEXT_HOP_ID</ofdpa10:multicast-group-nexthop-id> |
| 1125 | </ofdpa10:vni> |
| 1126 | </of11-config:capable-switch> |
| 1127 | </config> |
| 1128 | """ |
| 1129 | config_vni_xml=config_vni_xml.replace("NEXT_HOP_ID", str(next_hop_id)) |
| 1130 | config_vni_xml=config_vni_xml.replace("MCAST_IP", str(mcast_ipv4)) |
| 1131 | else: |
| 1132 | config_vni_xml=""" |
| 1133 | <config> |
| 1134 | <of11-config:capable-switch xmlns:of11-config="urn:onf:of111:config:yang" xmlns:xc="urn:ietf:params:xml:ns:netconf:base:1.0"> |
| 1135 | <ofdpa10:vni xmlns:ofdpa10="urn:bcm:ofdpa10:accton01" xc:operation="OPERATION"> |
| 1136 | <ofdpa10:id>VNID</ofdpa10:id> |
| 1137 | </ofdpa10:vni> |
| 1138 | </of11-config:capable-switch> |
| 1139 | </config> |
| 1140 | """ |
| 1141 | |
| 1142 | config_vni_xml=config_vni_xml.replace("VNID", str(vni_id)) |
| 1143 | config_vni_xml=config_vni_xml.replace("OPERATION", str(operation)) |
| 1144 | return config_vni_xml |
| 1145 | |
| 1146 | def get_featureReplay(self): |
| 1147 | req = ofp.message.features_request() |
| 1148 | res, raw = self.controller.transact(req) |
| 1149 | self.assertIsNotNone(res, "Did not receive a response from the DUT.") |
| 1150 | self.assertEqual(res.type, ofp.OFPT_FEATURES_REPLY, |
| 1151 | ("Unexpected packet type %d received in response to " |
| 1152 | "OFPT_FEATURES_REQUEST") % res.type) |
| 1153 | return res |
| 1154 | |
| 1155 | def send_edit_config(switch_ip, xml, target='runing'): |
| 1156 | NETCONF_ACCOUNT="netconfuser" |
| 1157 | NETCONF_PASSWD="netconfuser" |
| 1158 | with manager.connect_ssh(host=switch_ip, port=830, username=NETCONF_ACCOUNT, password=NETCONF_PASSWD, hostkey_verify=False ) as m: |
| 1159 | try: |
| 1160 | m.edit_config(target='running', |
| 1161 | config=xml, |
| 1162 | default_operation='merge', |
| 1163 | error_option='stop-on-error') |
| 1164 | |
| 1165 | except Exception as e: |
| 1166 | logging.info("Fail to set xml %s", xml) |
| 1167 | return False |
| 1168 | |
| 1169 | #return m.get_config(source='running').data_xml |
| 1170 | return True |
| 1171 | |
| 1172 | def send_delete_config(switch_ip, xml, target='runing'): |
| 1173 | NETCONF_ACCOUNT="netconfuser" |
| 1174 | NETCONF_PASSWD="netconfuser" |
| 1175 | with manager.connect_ssh(host=switch_ip, port=830, username=NETCONF_ACCOUNT, password=NETCONF_PASSWD, hostkey_verify=False ) as m: |
| 1176 | try: |
| 1177 | m.edit_config(target='running', |
| 1178 | config=xml, |
| 1179 | default_operation='delete', |
| 1180 | error_option='stop-on-error') |
| 1181 | |
| 1182 | except Exception as e: |
| 1183 | logging.info("Fail to set xml %s", xml) |
| 1184 | return False |
| 1185 | |
| 1186 | #return m.get_config(source='running').data_xml |
| 1187 | return True |
| 1188 | |
| 1189 | def get_edit_config(switch_ip, target='runing'): |
| 1190 | NETCONF_ACCOUNT="netconfuser" |
| 1191 | NETCONF_PASSWD="netconfuser" |
| 1192 | with manager.connect_ssh(host=switch_ip, port=830, username=NETCONF_ACCOUNT, password=NETCONF_PASSWD, hostkey_verify=False ) as m: |
macauley | 6f6ceb2 | 2015-08-07 09:37:12 +0800 | [diff] [blame] | 1193 | return m.get_config(source='running').data_xml |
macauley | dbff327 | 2015-07-30 14:07:16 +0800 | [diff] [blame] | 1194 | |
macauley_cheng | 67da926 | 2015-08-31 15:18:41 +0800 | [diff] [blame] | 1195 | |
| 1196 | """ |
| 1197 | MPLS |
| 1198 | """ |
| 1199 | |
| 1200 | OFDPA_MPLS_SUBTYPE_SHIFT=24 |
| 1201 | OFDPA_MPLS_GROUP_SUBTYPE_L2_VPN_LABEL=1 |
| 1202 | OFDPA_MPLS_GROUP_SUBTYPE_L3_VPN_LABEL=2 |
| 1203 | OFDPA_MPLS_GROUP_SUBTYPE_TUNNEL_LABEL1=3 |
| 1204 | OFDPA_MPLS_GROUP_SUBTYPE_TUNNEL_LABEL2=4 |
| 1205 | OFDPA_MPLS_GROUP_SUBTYPE_SWAP_LABEL=5 |
| 1206 | OFDPA_MPLS_GROUP_SUBTYPE_FAST_FAILOVER_GROUP=6 |
| 1207 | OFDPA_MPLS_GROUP_SUBTYPE_ECMP=8 |
| 1208 | OFDPA_MPLS_GROUP_SUBTYPE_L2_TAG=10 |
| 1209 | |
| 1210 | def encode_mpls_interface_group_id(subtype, index): |
| 1211 | index=index&0x00ffffff |
| 1212 | assert(subtype==0) |
| 1213 | return index + (9 << OFDPA_GROUP_TYPE_SHIFT)+(subtype<<OFDPA_MPLS_SUBTYPE_SHIFT) |
| 1214 | |
| 1215 | def encode_mpls_label_group_id(subtype, index): |
| 1216 | index=index&0x00ffffff |
| 1217 | assert(subtype <=5 or subtype==0) |
| 1218 | #1: l2 vpn label |
| 1219 | #2: l3 vpn label |
| 1220 | #3: mpls tunnel label 1 |
| 1221 | #4: mpls tunnel lable 2 |
| 1222 | #5: mpls swap label |
| 1223 | return index + (9 << OFDPA_GROUP_TYPE_SHIFT)+(subtype<<OFDPA_MPLS_SUBTYPE_SHIFT) |
| 1224 | |
| 1225 | def encode_mpls_forwarding_group_id(subtype, index): |
| 1226 | index=index&0x00ffffff |
| 1227 | assert(subtype==6 or subtype==8 or subtype==10) |
| 1228 | return index + (10 << OFDPA_GROUP_TYPE_SHIFT)+(subtype<<OFDPA_MPLS_SUBTYPE_SHIFT) |
| 1229 | |
| 1230 | |
| 1231 | def add_mpls_intf_group(ctrl, ref_gid, dst_mac, src_mac, vid, index, subtype=0): |
| 1232 | action=[] |
| 1233 | action.append(ofp.action.set_field(ofp.oxm.eth_src(src_mac))) |
| 1234 | action.append(ofp.action.set_field(ofp.oxm.eth_dst(dst_mac))) |
| 1235 | action.append(ofp.action.set_field(ofp.oxm.vlan_vid(vid))) |
| 1236 | action.append(ofp.action.group(ref_gid)) |
| 1237 | |
| 1238 | buckets = [ofp.bucket(actions=action)] |
| 1239 | |
| 1240 | mpls_group_id =encode_mpls_interface_group_id(subtype, index) |
| 1241 | request = ofp.message.group_add(group_type=ofp.OFPGT_INDIRECT, |
| 1242 | group_id=mpls_group_id, |
| 1243 | buckets=buckets |
| 1244 | ) |
| 1245 | ctrl.message_send(request) |
| 1246 | return mpls_group_id, request |
| 1247 | |
| 1248 | def add_mpls_label_group(ctrl, subtype, index, ref_gid, |
| 1249 | lmep_id=-1, |
| 1250 | qos_index=-1, |
| 1251 | push_l2_header=False, |
| 1252 | push_vlan=False, |
| 1253 | push_mpls_header=False, |
| 1254 | push_cw=False, |
| 1255 | set_mpls_label=None, |
| 1256 | set_bos=None, |
| 1257 | set_tc=None, |
| 1258 | set_tc_from_table=False, |
| 1259 | cpy_tc_outward=False, |
| 1260 | set_ttl=None, |
| 1261 | cpy_ttl_outward=False, |
| 1262 | oam_lm_tx_count=False, |
| 1263 | set_pri_from_table=False |
| 1264 | ): |
| 1265 | """ |
| 1266 | @ref_gid: only can be mpls intf group or mpls tunnel label 1/2 group |
| 1267 | """ |
| 1268 | action=[] |
| 1269 | |
| 1270 | if push_vlan== True: |
| 1271 | action.append(ofp.action.push_vlan(0x8100)) |
| 1272 | if push_mpls_header== True: |
| 1273 | action.append(ofp.action.push_mpls(0x8847)) |
| 1274 | if set_mpls_label != None: |
| 1275 | action.append(ofp.action.set_field(ofp.oxm.mpls_label(set_mpls_label))) |
| 1276 | if set_bos != None: |
| 1277 | action.append(ofp.action.set_field(ofp.oxm.mpls_bos(set_bos))) |
| 1278 | if set_tc != None: |
| 1279 | assert(set_tc_from_table==False) |
| 1280 | action.append(ofp.action.set_field(ofp.oxm.mpls_tc(set_tc))) |
| 1281 | if set_ttl != None: |
| 1282 | action.append(ofp.action.set_mpls_ttl(set_ttl)) |
| 1283 | if cpy_ttl_outward == True: |
| 1284 | action.append(ofp.action.copy_ttl_out()) |
| 1285 | """ |
| 1286 | ofdpa experimenter |
| 1287 | """ |
| 1288 | if push_l2_header== True: |
| 1289 | action.append(ofp.action.ofdpa_push_l2_header()) |
| 1290 | if set_tc_from_table== True: |
| 1291 | assert(qos_index>=0) |
| 1292 | assert(set_tc == None) |
| 1293 | action.append(ofp.action.ofdpa_set_tc_from_table(qos_index)) |
| 1294 | if cpy_tc_outward == True: |
| 1295 | action.append(ofp.action.ofdpa_copy_tc_out()) |
| 1296 | if oam_lm_tx_count == True: |
| 1297 | assert(qos_index>=0 and lmep_id>=0) |
| 1298 | action.append(ofp.action.ofdpa_oam_lm_tx_count(lmep_id, qos_index)) |
| 1299 | if set_pri_from_table == True: |
| 1300 | assert(qos_index>=0) |
| 1301 | action.append(ofp.action.ofdpa_set_qos_from_table(qos_index)) |
| 1302 | if push_cw == True: |
| 1303 | action.append(ofp.action.ofdpa_push_cw()) |
| 1304 | |
| 1305 | action.append(ofp.action.group(ref_gid)) |
| 1306 | buckets = [ofp.bucket(actions=action)] |
| 1307 | |
| 1308 | mpls_group_id = encode_mpls_label_group_id(subtype, index) |
| 1309 | request = ofp.message.group_add(group_type=ofp.OFPGT_INDIRECT, |
| 1310 | group_id=mpls_group_id, |
| 1311 | buckets=buckets |
| 1312 | ) |
| 1313 | ctrl.message_send(request) |
| 1314 | |
| 1315 | return mpls_group_id, request |
| 1316 | |
| 1317 | def add_mpls_forwarding_group(ctrl, subtype, index, ref_gids, |
| 1318 | watch_port=None, |
macauley_cheng | d17ce51 | 2015-08-31 17:45:51 +0800 | [diff] [blame] | 1319 | watch_group=ofp.OFPP_ANY, |
macauley_cheng | 67da926 | 2015-08-31 15:18:41 +0800 | [diff] [blame] | 1320 | push_vlan=None, |
macauley_cheng | d17ce51 | 2015-08-31 17:45:51 +0800 | [diff] [blame] | 1321 | pop_vlan=None, |
macauley_cheng | 67da926 | 2015-08-31 15:18:41 +0800 | [diff] [blame] | 1322 | set_vid=None): |
| 1323 | assert(subtype == OFDPA_MPLS_GROUP_SUBTYPE_FAST_FAILOVER_GROUP |
| 1324 | or subtype == OFDPA_MPLS_GROUP_SUBTYPE_ECMP |
| 1325 | or subtype == OFDPA_MPLS_GROUP_SUBTYPE_L2_TAG) |
macauley_cheng | d17ce51 | 2015-08-31 17:45:51 +0800 | [diff] [blame] | 1326 | |
macauley_cheng | 67da926 | 2015-08-31 15:18:41 +0800 | [diff] [blame] | 1327 | buckets=[] |
| 1328 | if subtype == OFDPA_MPLS_GROUP_SUBTYPE_FAST_FAILOVER_GROUP: |
macauley_cheng | d17ce51 | 2015-08-31 17:45:51 +0800 | [diff] [blame] | 1329 | group_type = ofp.OFPGT_FF |
macauley_cheng | 67da926 | 2015-08-31 15:18:41 +0800 | [diff] [blame] | 1330 | for gid in ref_gids: |
macauley_cheng | d17ce51 | 2015-08-31 17:45:51 +0800 | [diff] [blame] | 1331 | action=[] |
| 1332 | action.append(ofp.action.group(gid)) |
| 1333 | buckets.append(ofp.bucket(watch_port=watch_port, watch_group=watch_group,actions=action)) |
| 1334 | |
macauley_cheng | 67da926 | 2015-08-31 15:18:41 +0800 | [diff] [blame] | 1335 | elif subtype == OFDPA_MPLS_GROUP_SUBTYPE_ECMP: |
| 1336 | group_type = ofp.OFPGT_SELECT |
| 1337 | for gid in ref_gids: |
macauley_cheng | d17ce51 | 2015-08-31 17:45:51 +0800 | [diff] [blame] | 1338 | action=[] |
macauley_cheng | 67da926 | 2015-08-31 15:18:41 +0800 | [diff] [blame] | 1339 | action.append(ofp.action.group(gid)) |
| 1340 | buckets.append(ofp.bucket(actions=action)) |
macauley_cheng | d17ce51 | 2015-08-31 17:45:51 +0800 | [diff] [blame] | 1341 | |
macauley_cheng | 67da926 | 2015-08-31 15:18:41 +0800 | [diff] [blame] | 1342 | elif subtype == OFDPA_MPLS_GROUP_SUBTYPE_L2_TAG: |
| 1343 | group_type = ofp.OFPGT_INDIRECT |
macauley_cheng | d17ce51 | 2015-08-31 17:45:51 +0800 | [diff] [blame] | 1344 | action=[] |
macauley_cheng | 67da926 | 2015-08-31 15:18:41 +0800 | [diff] [blame] | 1345 | if set_vid!=None: |
| 1346 | action.append(ofp.action.set_field(ofp.oxm.vlan_vid(set_vid))) |
| 1347 | if push_vlan!=None: |
| 1348 | action.append(ofp.action.push_vlan(push_vlan)) |
| 1349 | if pop_vlan!=None: |
macauley_cheng | d17ce51 | 2015-08-31 17:45:51 +0800 | [diff] [blame] | 1350 | action.append(ofp.action.pop_vlan()) |
macauley_cheng | 67da926 | 2015-08-31 15:18:41 +0800 | [diff] [blame] | 1351 | action.append(ofp.action.group(ref_gids[0])) |
| 1352 | buckets.append(ofp.bucket(actions=action)) |
macauley_cheng | d17ce51 | 2015-08-31 17:45:51 +0800 | [diff] [blame] | 1353 | |
| 1354 | mpls_group_id = encode_mpls_forwarding_group_id(subtype, index) |
macauley_cheng | 67da926 | 2015-08-31 15:18:41 +0800 | [diff] [blame] | 1355 | request = ofp.message.group_add(group_type=group_type, |
macauley_cheng | 67da926 | 2015-08-31 15:18:41 +0800 | [diff] [blame] | 1356 | group_id=mpls_group_id, |
| 1357 | buckets=buckets |
| 1358 | ) |
| 1359 | ctrl.message_send(request) |
| 1360 | return mpls_group_id, request |
macauley_cheng | d17ce51 | 2015-08-31 17:45:51 +0800 | [diff] [blame] | 1361 | |
| 1362 | |
macauley_cheng | 67da926 | 2015-08-31 15:18:41 +0800 | [diff] [blame] | 1363 | """ |
| 1364 | dislay |
| 1365 | """ |
macauley | dbff327 | 2015-07-30 14:07:16 +0800 | [diff] [blame] | 1366 | def print_current_table_flow_stat(ctrl, table_id=0xff): |
| 1367 | stat_req=ofp.message.flow_stats_request() |
| 1368 | response, pkt = ctrl.transact(stat_req) |
| 1369 | if response == None: |
| 1370 | print "no response" |
| 1371 | return None |
| 1372 | print len(response.entries) |
| 1373 | for obj in response.entries: |
| 1374 | print "match ", obj.match |
| 1375 | print "cookie", obj.cookie |
| 1376 | print "priority", obj.priority |
| 1377 | print "idle_timeout", obj.idle_timeout |
| 1378 | print "hard_timeout", obj.hard_timeout |
| 1379 | #obj.actions |
Flavio Castro | 167f5bd | 2015-12-02 19:33:53 -0500 | [diff] [blame] | 1380 | print "packet count: %lx"%obj.packet_count |