Dan Talayco | d2ca103 | 2010-03-10 14:40:26 -0800 | [diff] [blame] | 1 | import sys |
Dan Talayco | 92c9912 | 2010-06-03 13:53:18 -0700 | [diff] [blame] | 2 | import copy |
Rich Lane | 6242d9f | 2013-01-06 17:35:39 -0800 | [diff] [blame] | 3 | import logging |
| 4 | import types |
| 5 | import time |
Dan Talayco | d2ca103 | 2010-03-10 14:40:26 -0800 | [diff] [blame] | 6 | |
| 7 | try: |
| 8 | import scapy.all as scapy |
| 9 | except: |
| 10 | try: |
| 11 | import scapy as scapy |
| 12 | except: |
| 13 | sys.exit("Need to install scapy for packet parsing") |
Dan Talayco | 41eae8b | 2010-03-10 13:57:06 -0800 | [diff] [blame] | 14 | |
Rich Lane | 477f481 | 2012-10-04 22:49:00 -0700 | [diff] [blame] | 15 | from oftest import config |
Dan Talayco | c901f4d | 2010-03-07 21:55:45 -0800 | [diff] [blame] | 16 | import oftest.controller as controller |
Dan Talayco | c901f4d | 2010-03-07 21:55:45 -0800 | [diff] [blame] | 17 | import oftest.dataplane as dataplane |
Rich Lane | 6242d9f | 2013-01-06 17:35:39 -0800 | [diff] [blame] | 18 | import of10.cstruct as ofp |
| 19 | import of10.message as message |
| 20 | import of10.action as action |
| 21 | import of10.parse as parse |
Dan Talayco | c901f4d | 2010-03-07 21:55:45 -0800 | [diff] [blame] | 22 | |
Dan Talayco | ba3745c | 2010-07-21 21:51:08 -0700 | [diff] [blame] | 23 | global skipped_test_count |
| 24 | skipped_test_count = 0 |
| 25 | |
Dan Talayco | 551befa | 2010-07-15 17:05:32 -0700 | [diff] [blame] | 26 | # Some useful defines |
| 27 | IP_ETHERTYPE = 0x800 |
| 28 | TCP_PROTOCOL = 0x6 |
| 29 | UDP_PROTOCOL = 0x11 |
| 30 | |
Jeffrey Townsend | 5cb7ed3 | 2012-08-17 18:11:01 +0000 | [diff] [blame] | 31 | MINSIZE = 0 |
| 32 | |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 33 | def delete_all_flows(ctrl): |
Dan Talayco | 41eae8b | 2010-03-10 13:57:06 -0800 | [diff] [blame] | 34 | """ |
| 35 | Delete all flows on the switch |
| 36 | @param ctrl The controller object for the test |
Dan Talayco | 41eae8b | 2010-03-10 13:57:06 -0800 | [diff] [blame] | 37 | """ |
| 38 | |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 39 | logging.info("Deleting all flows") |
Dan Talayco | c901f4d | 2010-03-07 21:55:45 -0800 | [diff] [blame] | 40 | msg = message.flow_mod() |
| 41 | msg.match.wildcards = ofp.OFPFW_ALL |
Dan Talayco | 41eae8b | 2010-03-10 13:57:06 -0800 | [diff] [blame] | 42 | msg.out_port = ofp.OFPP_NONE |
Dan Talayco | c901f4d | 2010-03-07 21:55:45 -0800 | [diff] [blame] | 43 | msg.command = ofp.OFPFC_DELETE |
| 44 | msg.buffer_id = 0xffffffff |
Rich Lane | 5c3151c | 2013-01-03 17:15:41 -0800 | [diff] [blame] | 45 | ctrl.message_send(msg) |
Rich Lane | 32bf948 | 2013-01-03 17:26:30 -0800 | [diff] [blame] | 46 | return 0 # for backwards compatibility |
Dan Talayco | 41eae8b | 2010-03-10 13:57:06 -0800 | [diff] [blame] | 47 | |
Ed Swierk | 99a74de | 2012-08-22 06:40:54 -0700 | [diff] [blame] | 48 | def required_wildcards(parent): |
Rich Lane | 2014f9b | 2012-10-05 15:29:40 -0700 | [diff] [blame] | 49 | w = test_param_get('required_wildcards', default='default') |
Ed Swierk | 99a74de | 2012-08-22 06:40:54 -0700 | [diff] [blame] | 50 | if w == 'l3-l4': |
| 51 | return (ofp.OFPFW_NW_SRC_ALL | ofp.OFPFW_NW_DST_ALL | ofp.OFPFW_NW_TOS |
| 52 | | ofp.OFPFW_NW_PROTO | ofp.OFPFW_TP_SRC | ofp.OFPFW_TP_DST) |
| 53 | else: |
| 54 | return 0 |
| 55 | |
Dan Talayco | 41eae8b | 2010-03-10 13:57:06 -0800 | [diff] [blame] | 56 | def simple_tcp_packet(pktlen=100, |
| 57 | dl_dst='00:01:02:03:04:05', |
| 58 | dl_src='00:06:07:08:09:0a', |
Tatsuya Yabe | 460321e | 2010-05-25 17:50:49 -0700 | [diff] [blame] | 59 | dl_vlan_enable=False, |
| 60 | dl_vlan=0, |
| 61 | dl_vlan_pcp=0, |
Dan Talayco | 551befa | 2010-07-15 17:05:32 -0700 | [diff] [blame] | 62 | dl_vlan_cfi=0, |
Dan Talayco | 41eae8b | 2010-03-10 13:57:06 -0800 | [diff] [blame] | 63 | ip_src='192.168.0.1', |
| 64 | ip_dst='192.168.0.2', |
Tatsuya Yabe | 460321e | 2010-05-25 17:50:49 -0700 | [diff] [blame] | 65 | ip_tos=0, |
Dan Talayco | 41eae8b | 2010-03-10 13:57:06 -0800 | [diff] [blame] | 66 | tcp_sport=1234, |
Christian Dickmann | 8b59b4b | 2012-09-23 16:48:30 -0700 | [diff] [blame] | 67 | tcp_dport=80, |
| 68 | ip_ihl=None, |
| 69 | ip_options=False |
Dan Talayco | 41eae8b | 2010-03-10 13:57:06 -0800 | [diff] [blame] | 70 | ): |
| 71 | """ |
| 72 | Return a simple dataplane TCP packet |
| 73 | |
| 74 | Supports a few parameters: |
| 75 | @param len Length of packet in bytes w/o CRC |
| 76 | @param dl_dst Destinatino MAC |
| 77 | @param dl_src Source MAC |
Tatsuya Yabe | 460321e | 2010-05-25 17:50:49 -0700 | [diff] [blame] | 78 | @param dl_vlan_enable True if the packet is with vlan, False otherwise |
| 79 | @param dl_vlan VLAN ID |
| 80 | @param dl_vlan_pcp VLAN priority |
Dan Talayco | 41eae8b | 2010-03-10 13:57:06 -0800 | [diff] [blame] | 81 | @param ip_src IP source |
| 82 | @param ip_dst IP destination |
Tatsuya Yabe | 460321e | 2010-05-25 17:50:49 -0700 | [diff] [blame] | 83 | @param ip_tos IP ToS |
Dan Talayco | 41eae8b | 2010-03-10 13:57:06 -0800 | [diff] [blame] | 84 | @param tcp_dport TCP destination port |
| 85 | @param ip_sport TCP source port |
| 86 | |
| 87 | Generates a simple TCP request. Users |
| 88 | shouldn't assume anything about this packet other than that |
| 89 | it is a valid ethernet/IP/TCP frame. |
| 90 | """ |
Jeffrey Townsend | 5cb7ed3 | 2012-08-17 18:11:01 +0000 | [diff] [blame] | 91 | |
| 92 | if MINSIZE > pktlen: |
| 93 | pktlen = MINSIZE |
| 94 | |
Dan Talayco | 551befa | 2010-07-15 17:05:32 -0700 | [diff] [blame] | 95 | # Note Dot1Q.id is really CFI |
Shudong Zhou | 43ee54c | 2012-12-13 15:52:37 -0800 | [diff] [blame] | 96 | if (dl_vlan_enable): |
Tatsuya Yabe | 460321e | 2010-05-25 17:50:49 -0700 | [diff] [blame] | 97 | pkt = scapy.Ether(dst=dl_dst, src=dl_src)/ \ |
Dan Talayco | 551befa | 2010-07-15 17:05:32 -0700 | [diff] [blame] | 98 | scapy.Dot1Q(prio=dl_vlan_pcp, id=dl_vlan_cfi, vlan=dl_vlan)/ \ |
Christian Dickmann | 8b59b4b | 2012-09-23 16:48:30 -0700 | [diff] [blame] | 99 | scapy.IP(src=ip_src, dst=ip_dst, tos=ip_tos, ihl=ip_ihl)/ \ |
Tatsuya Yabe | 460321e | 2010-05-25 17:50:49 -0700 | [diff] [blame] | 100 | scapy.TCP(sport=tcp_sport, dport=tcp_dport) |
| 101 | else: |
Christian Dickmann | 8b59b4b | 2012-09-23 16:48:30 -0700 | [diff] [blame] | 102 | if not ip_options: |
| 103 | pkt = scapy.Ether(dst=dl_dst, src=dl_src)/ \ |
| 104 | scapy.IP(src=ip_src, dst=ip_dst, tos=ip_tos, ihl=ip_ihl)/ \ |
| 105 | scapy.TCP(sport=tcp_sport, dport=tcp_dport) |
| 106 | else: |
| 107 | pkt = scapy.Ether(dst=dl_dst, src=dl_src)/ \ |
| 108 | scapy.IP(src=ip_src, dst=ip_dst, tos=ip_tos, ihl=ip_ihl, options=ip_options)/ \ |
| 109 | scapy.TCP(sport=tcp_sport, dport=tcp_dport) |
Tatsuya Yabe | 460321e | 2010-05-25 17:50:49 -0700 | [diff] [blame] | 110 | |
Dan Talayco | 41eae8b | 2010-03-10 13:57:06 -0800 | [diff] [blame] | 111 | pkt = pkt/("D" * (pktlen - len(pkt))) |
| 112 | |
| 113 | return pkt |
| 114 | |
Rich Lane | 6ee7bea | 2012-10-26 16:19:29 -0700 | [diff] [blame] | 115 | def simple_udp_packet(pktlen=100, |
| 116 | dl_dst='00:01:02:03:04:05', |
| 117 | dl_src='00:06:07:08:09:0a', |
| 118 | dl_vlan_enable=False, |
| 119 | dl_vlan=0, |
| 120 | dl_vlan_pcp=0, |
| 121 | dl_vlan_cfi=0, |
| 122 | ip_src='192.168.0.1', |
| 123 | ip_dst='192.168.0.2', |
| 124 | ip_tos=0, |
| 125 | udp_sport=1234, |
| 126 | udp_dport=80, |
| 127 | ip_ihl=None, |
| 128 | ip_options=False |
| 129 | ): |
| 130 | """ |
| 131 | Return a simple dataplane UDP packet |
| 132 | |
| 133 | Supports a few parameters: |
| 134 | @param len Length of packet in bytes w/o CRC |
| 135 | @param dl_dst Destination MAC |
| 136 | @param dl_src Source MAC |
| 137 | @param dl_vlan_enable True if the packet is with vlan, False otherwise |
| 138 | @param dl_vlan VLAN ID |
| 139 | @param dl_vlan_pcp VLAN priority |
| 140 | @param ip_src IP source |
| 141 | @param ip_dst IP destination |
| 142 | @param ip_tos IP ToS |
| 143 | @param udp_dport UDP destination port |
| 144 | @param udp_sport UDP source port |
| 145 | |
| 146 | Generates a simple UDP packet. Users shouldn't assume anything about |
| 147 | this packet other than that it is a valid ethernet/IP/UDP frame. |
| 148 | """ |
| 149 | |
| 150 | if MINSIZE > pktlen: |
| 151 | pktlen = MINSIZE |
| 152 | |
| 153 | # Note Dot1Q.id is really CFI |
| 154 | if (dl_vlan_enable): |
| 155 | pkt = scapy.Ether(dst=dl_dst, src=dl_src)/ \ |
| 156 | scapy.Dot1Q(prio=dl_vlan_pcp, id=dl_vlan_cfi, vlan=dl_vlan)/ \ |
| 157 | scapy.IP(src=ip_src, dst=ip_dst, tos=ip_tos, ihl=ip_ihl)/ \ |
| 158 | scapy.UDP(sport=udp_sport, dport=udp_dport) |
| 159 | else: |
| 160 | if not ip_options: |
| 161 | pkt = scapy.Ether(dst=dl_dst, src=dl_src)/ \ |
| 162 | scapy.IP(src=ip_src, dst=ip_dst, tos=ip_tos, ihl=ip_ihl)/ \ |
| 163 | scapy.UDP(sport=udp_sport, dport=udp_dport) |
| 164 | else: |
| 165 | pkt = scapy.Ether(dst=dl_dst, src=dl_src)/ \ |
| 166 | scapy.IP(src=ip_src, dst=ip_dst, tos=ip_tos, ihl=ip_ihl, options=ip_options)/ \ |
| 167 | scapy.UDP(sport=udp_sport, dport=udp_dport) |
| 168 | |
| 169 | pkt = pkt/("D" * (pktlen - len(pkt))) |
| 170 | |
| 171 | return pkt |
| 172 | |
Tatsuya Yabe | b8fb3c3 | 2010-06-14 15:48:36 -0700 | [diff] [blame] | 173 | def simple_icmp_packet(pktlen=60, |
| 174 | dl_dst='00:01:02:03:04:05', |
| 175 | dl_src='00:06:07:08:09:0a', |
| 176 | dl_vlan_enable=False, |
| 177 | dl_vlan=0, |
| 178 | dl_vlan_pcp=0, |
| 179 | ip_src='192.168.0.1', |
| 180 | ip_dst='192.168.0.2', |
| 181 | ip_tos=0, |
| 182 | icmp_type=8, |
| 183 | icmp_code=0 |
| 184 | ): |
| 185 | """ |
| 186 | Return a simple ICMP packet |
| 187 | |
| 188 | Supports a few parameters: |
| 189 | @param len Length of packet in bytes w/o CRC |
| 190 | @param dl_dst Destinatino MAC |
| 191 | @param dl_src Source MAC |
| 192 | @param dl_vlan_enable True if the packet is with vlan, False otherwise |
| 193 | @param dl_vlan VLAN ID |
| 194 | @param dl_vlan_pcp VLAN priority |
| 195 | @param ip_src IP source |
| 196 | @param ip_dst IP destination |
| 197 | @param ip_tos IP ToS |
| 198 | @param icmp_type ICMP type |
| 199 | @param icmp_code ICMP code |
| 200 | |
| 201 | Generates a simple ICMP ECHO REQUEST. Users |
| 202 | shouldn't assume anything about this packet other than that |
| 203 | it is a valid ethernet/ICMP frame. |
| 204 | """ |
Jeffrey Townsend | 5cb7ed3 | 2012-08-17 18:11:01 +0000 | [diff] [blame] | 205 | |
| 206 | if MINSIZE > pktlen: |
| 207 | pktlen = MINSIZE |
| 208 | |
Tatsuya Yabe | b8fb3c3 | 2010-06-14 15:48:36 -0700 | [diff] [blame] | 209 | if (dl_vlan_enable): |
| 210 | pkt = scapy.Ether(dst=dl_dst, src=dl_src)/ \ |
| 211 | scapy.Dot1Q(prio=dl_vlan_pcp, id=0, vlan=dl_vlan)/ \ |
| 212 | scapy.IP(src=ip_src, dst=ip_dst, tos=ip_tos)/ \ |
| 213 | scapy.ICMP(type=icmp_type, code=icmp_code) |
| 214 | else: |
| 215 | pkt = scapy.Ether(dst=dl_dst, src=dl_src)/ \ |
| 216 | scapy.IP(src=ip_src, dst=ip_dst, tos=ip_tos)/ \ |
| 217 | scapy.ICMP(type=icmp_type, code=icmp_code) |
| 218 | |
| 219 | pkt = pkt/("0" * (pktlen - len(pkt))) |
| 220 | |
| 221 | return pkt |
| 222 | |
Ed Swierk | 0aeff8c | 2012-03-23 20:27:18 -0700 | [diff] [blame] | 223 | def simple_eth_packet(pktlen=60, |
| 224 | dl_dst='00:01:02:03:04:05', |
| 225 | dl_src='01:80:c2:00:00:00', |
| 226 | dl_type=0x88cc): |
Jeffrey Townsend | 5cb7ed3 | 2012-08-17 18:11:01 +0000 | [diff] [blame] | 227 | |
| 228 | if MINSIZE > pktlen: |
| 229 | pktlen = MINSIZE |
| 230 | |
Ed Swierk | 0aeff8c | 2012-03-23 20:27:18 -0700 | [diff] [blame] | 231 | pkt = scapy.Ether(dst=dl_dst, src=dl_src, type=dl_type) |
| 232 | |
| 233 | pkt = pkt/("0" * (pktlen - len(pkt))) |
| 234 | |
| 235 | return pkt |
| 236 | |
Shudong Zhou | 43ee54c | 2012-12-13 15:52:37 -0800 | [diff] [blame] | 237 | def qinq_tcp_packet(pktlen=100, |
| 238 | dl_dst='00:01:02:03:04:05', |
| 239 | dl_src='00:06:07:08:09:0a', |
| 240 | dl_vlan_outer=20, |
| 241 | dl_vlan_pcp_outer=0, |
| 242 | dl_vlan_cfi_outer=0, |
| 243 | dl_vlan=10, |
| 244 | dl_vlan_pcp=0, |
| 245 | dl_vlan_cfi=0, |
| 246 | ip_src='192.168.0.1', |
| 247 | ip_dst='192.168.0.2', |
| 248 | ip_tos=0, |
| 249 | tcp_sport=1234, |
| 250 | tcp_dport=80, |
| 251 | ip_ihl=None, |
| 252 | ip_options=False |
| 253 | ): |
| 254 | """ |
| 255 | Return a doubly tagged dataplane TCP packet |
| 256 | |
| 257 | Supports a few parameters: |
| 258 | @param len Length of packet in bytes w/o CRC |
| 259 | @param dl_dst Destinatino MAC |
| 260 | @param dl_src Source MAC |
| 261 | @param dl_vlan_outer Outer VLAN ID |
| 262 | @param dl_vlan_pcp_outer Outer VLAN priority |
| 263 | @param dl_vlan_cfi_outer Outer VLAN cfi bit |
| 264 | @param dl_vlan Inner VLAN ID |
| 265 | @param dl_vlan_pcp VLAN priority |
| 266 | @param dl_vlan_cfi VLAN cfi bit |
| 267 | @param ip_src IP source |
| 268 | @param ip_dst IP destination |
| 269 | @param ip_tos IP ToS |
| 270 | @param tcp_dport TCP destination port |
| 271 | @param ip_sport TCP source port |
| 272 | |
| 273 | Generates a TCP request. Users |
| 274 | shouldn't assume anything about this packet other than that |
| 275 | it is a valid ethernet/IP/TCP frame. |
| 276 | """ |
| 277 | |
| 278 | if MINSIZE > pktlen: |
| 279 | pktlen = MINSIZE |
| 280 | |
| 281 | # Note Dot1Q.id is really CFI |
| 282 | pkt = scapy.Ether(dst=dl_dst, src=dl_src)/ \ |
| 283 | scapy.Dot1Q(prio=dl_vlan_pcp_outer, id=dl_vlan_cfi_outer, vlan=dl_vlan_outer)/ \ |
| 284 | scapy.Dot1Q(prio=dl_vlan_pcp, id=dl_vlan_cfi, vlan=dl_vlan)/ \ |
| 285 | scapy.IP(src=ip_src, dst=ip_dst, tos=ip_tos, ihl=ip_ihl)/ \ |
| 286 | scapy.TCP(sport=tcp_sport, dport=tcp_dport) |
| 287 | |
| 288 | pkt = pkt/("D" * (pktlen - len(pkt))) |
| 289 | |
| 290 | return pkt |
| 291 | |
Shudong Zhou | b7f1246 | 2012-11-20 13:01:12 -0800 | [diff] [blame] | 292 | def do_barrier(ctrl, timeout=-1): |
Dan Talayco | 0fc08bd | 2012-04-09 16:56:18 -0700 | [diff] [blame] | 293 | """ |
| 294 | Do a barrier command |
| 295 | Return 0 on success, -1 on error |
| 296 | """ |
Dan Talayco | 41eae8b | 2010-03-10 13:57:06 -0800 | [diff] [blame] | 297 | b = message.barrier_request() |
Shudong Zhou | b7f1246 | 2012-11-20 13:01:12 -0800 | [diff] [blame] | 298 | (resp, pkt) = ctrl.transact(b, timeout=timeout) |
Rich Lane | 3a261d5 | 2013-01-03 17:45:08 -0800 | [diff] [blame] | 299 | if resp is None: |
| 300 | raise AssertionError("barrier failed") |
Dan Talayco | f6b9483 | 2012-04-12 21:50:57 -0700 | [diff] [blame] | 301 | # We'll trust the transaction processing in the controller that xid matched |
Rich Lane | 3a261d5 | 2013-01-03 17:45:08 -0800 | [diff] [blame] | 302 | return 0 # for backwards compatibility |
Dan Talayco | 92c9912 | 2010-06-03 13:53:18 -0700 | [diff] [blame] | 303 | |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 304 | def port_config_get(controller, port_no): |
Dan Talayco | 92c9912 | 2010-06-03 13:53:18 -0700 | [diff] [blame] | 305 | """ |
| 306 | Get a port's configuration |
| 307 | |
| 308 | Gets the switch feature configuration and grabs one port's |
| 309 | configuration |
| 310 | |
| 311 | @returns (hwaddr, config, advert) The hwaddress, configuration and |
| 312 | advertised values |
| 313 | """ |
| 314 | request = message.features_request() |
Rich Lane | c8aaa3e | 2012-07-26 19:28:02 -0700 | [diff] [blame] | 315 | reply, pkt = controller.transact(request) |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 316 | logging.debug(reply.show()) |
Dan Talayco | 92c9912 | 2010-06-03 13:53:18 -0700 | [diff] [blame] | 317 | if reply is None: |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 318 | logging.warn("Get feature request failed") |
Dan Talayco | 92c9912 | 2010-06-03 13:53:18 -0700 | [diff] [blame] | 319 | return None, None, None |
| 320 | for idx in range(len(reply.ports)): |
| 321 | if reply.ports[idx].port_no == port_no: |
| 322 | return (reply.ports[idx].hw_addr, reply.ports[idx].config, |
| 323 | reply.ports[idx].advertised) |
| 324 | |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 325 | logging.warn("Did not find port number for port config") |
Dan Talayco | 92c9912 | 2010-06-03 13:53:18 -0700 | [diff] [blame] | 326 | return None, None, None |
| 327 | |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 328 | def port_config_set(controller, port_no, config, mask): |
Dan Talayco | 92c9912 | 2010-06-03 13:53:18 -0700 | [diff] [blame] | 329 | """ |
| 330 | Set the port configuration according the given parameters |
| 331 | |
| 332 | Gets the switch feature configuration and updates one port's |
| 333 | configuration value according to config and mask |
| 334 | """ |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 335 | logging.info("Setting port " + str(port_no) + " to config " + str(config)) |
Dan Talayco | 92c9912 | 2010-06-03 13:53:18 -0700 | [diff] [blame] | 336 | request = message.features_request() |
Rich Lane | c8aaa3e | 2012-07-26 19:28:02 -0700 | [diff] [blame] | 337 | reply, pkt = controller.transact(request) |
Dan Talayco | 92c9912 | 2010-06-03 13:53:18 -0700 | [diff] [blame] | 338 | if reply is None: |
| 339 | return -1 |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 340 | logging.debug(reply.show()) |
Ed Swierk | 8d84ce0 | 2012-12-27 15:36:48 -0800 | [diff] [blame^] | 341 | p = None |
Dan Talayco | 92c9912 | 2010-06-03 13:53:18 -0700 | [diff] [blame] | 342 | for idx in range(len(reply.ports)): |
| 343 | if reply.ports[idx].port_no == port_no: |
Ed Swierk | 8d84ce0 | 2012-12-27 15:36:48 -0800 | [diff] [blame^] | 344 | p = reply.ports[idx] |
Dan Talayco | 92c9912 | 2010-06-03 13:53:18 -0700 | [diff] [blame] | 345 | break |
Dan Talayco | 92c9912 | 2010-06-03 13:53:18 -0700 | [diff] [blame] | 346 | mod = message.port_mod() |
| 347 | mod.port_no = port_no |
Ed Swierk | 8d84ce0 | 2012-12-27 15:36:48 -0800 | [diff] [blame^] | 348 | if p: |
| 349 | mod.hw_addr = p.hw_addr |
Dan Talayco | 92c9912 | 2010-06-03 13:53:18 -0700 | [diff] [blame] | 350 | mod.config = config |
| 351 | mod.mask = mask |
Ed Swierk | 8d84ce0 | 2012-12-27 15:36:48 -0800 | [diff] [blame^] | 352 | if p: |
| 353 | mod.advertise = p.advertised |
Rich Lane | 5c3151c | 2013-01-03 17:15:41 -0800 | [diff] [blame] | 354 | controller.message_send(mod) |
| 355 | return 0 |
Dan Talayco | 92c9912 | 2010-06-03 13:53:18 -0700 | [diff] [blame] | 356 | |
Rich Lane | 2014f9b | 2012-10-05 15:29:40 -0700 | [diff] [blame] | 357 | def receive_pkt_check(dp, pkt, yes_ports, no_ports, assert_if): |
Dan Talayco | 92c9912 | 2010-06-03 13:53:18 -0700 | [diff] [blame] | 358 | """ |
| 359 | Check for proper receive packets across all ports |
Ken Chiang | 1bf0160 | 2012-04-04 10:48:23 -0700 | [diff] [blame] | 360 | @param dp The dataplane object |
Dan Talayco | 92c9912 | 2010-06-03 13:53:18 -0700 | [diff] [blame] | 361 | @param pkt Expected packet; may be None if yes_ports is empty |
| 362 | @param yes_ports Set or list of ports that should recieve packet |
| 363 | @param no_ports Set or list of ports that should not receive packet |
| 364 | @param assert_if Object that implements assertXXX |
| 365 | """ |
Rich Lane | 9176567 | 2012-12-06 16:33:04 -0800 | [diff] [blame] | 366 | |
| 367 | # Wait this long for packets that we don't expect to receive. |
| 368 | # 100ms is (rarely) too short for positive tests on slow |
| 369 | # switches but is definitely not too short for a negative test. |
| 370 | negative_timeout = 0.1 |
| 371 | |
Dan Talayco | cf26b7a | 2011-08-05 10:15:35 -0700 | [diff] [blame] | 372 | exp_pkt_arg = None |
Rich Lane | 2014f9b | 2012-10-05 15:29:40 -0700 | [diff] [blame] | 373 | if config["relax"]: |
Dan Talayco | cf26b7a | 2011-08-05 10:15:35 -0700 | [diff] [blame] | 374 | exp_pkt_arg = pkt |
| 375 | |
Dan Talayco | 92c9912 | 2010-06-03 13:53:18 -0700 | [diff] [blame] | 376 | for ofport in yes_ports: |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 377 | logging.debug("Checking for pkt on port " + str(ofport)) |
Ken Chiang | 1bf0160 | 2012-04-04 10:48:23 -0700 | [diff] [blame] | 378 | (rcv_port, rcv_pkt, pkt_time) = dp.poll( |
Rich Lane | c8aaa3e | 2012-07-26 19:28:02 -0700 | [diff] [blame] | 379 | port_number=ofport, exp_pkt=exp_pkt_arg) |
Dan Talayco | 92c9912 | 2010-06-03 13:53:18 -0700 | [diff] [blame] | 380 | assert_if.assertTrue(rcv_pkt is not None, |
| 381 | "Did not receive pkt on " + str(ofport)) |
Ken Chiang | 1bf0160 | 2012-04-04 10:48:23 -0700 | [diff] [blame] | 382 | if not dataplane.match_exp_pkt(pkt, rcv_pkt): |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 383 | logging.debug("Sent %s" % format_packet(pkt)) |
| 384 | logging.debug("Resp %s" % format_packet(rcv_pkt)) |
Ken Chiang | 1bf0160 | 2012-04-04 10:48:23 -0700 | [diff] [blame] | 385 | assert_if.assertTrue(dataplane.match_exp_pkt(pkt, rcv_pkt), |
| 386 | "Response packet does not match send packet " + |
| 387 | "on port " + str(ofport)) |
Dan Talayco | 73f8401 | 2012-10-02 09:23:18 -0700 | [diff] [blame] | 388 | if len(no_ports) > 0: |
Rich Lane | 9176567 | 2012-12-06 16:33:04 -0800 | [diff] [blame] | 389 | time.sleep(negative_timeout) |
Dan Talayco | 92c9912 | 2010-06-03 13:53:18 -0700 | [diff] [blame] | 390 | for ofport in no_ports: |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 391 | logging.debug("Negative check for pkt on port " + str(ofport)) |
Ken Chiang | 1bf0160 | 2012-04-04 10:48:23 -0700 | [diff] [blame] | 392 | (rcv_port, rcv_pkt, pkt_time) = dp.poll( |
Rich Lane | 9176567 | 2012-12-06 16:33:04 -0800 | [diff] [blame] | 393 | port_number=ofport, timeout=0, exp_pkt=exp_pkt_arg) |
Dan Talayco | 92c9912 | 2010-06-03 13:53:18 -0700 | [diff] [blame] | 394 | assert_if.assertTrue(rcv_pkt is None, |
| 395 | "Unexpected pkt on port " + str(ofport)) |
Dan Talayco | 551befa | 2010-07-15 17:05:32 -0700 | [diff] [blame] | 396 | |
| 397 | |
Dan Talayco | c948d0b | 2012-03-23 12:17:54 -0700 | [diff] [blame] | 398 | def receive_pkt_verify(parent, egr_ports, exp_pkt, ing_port): |
Dan Talayco | 551befa | 2010-07-15 17:05:32 -0700 | [diff] [blame] | 399 | """ |
| 400 | Receive a packet and verify it matches an expected value |
Dan Talayco | f6e76c0 | 2012-03-23 10:56:12 -0700 | [diff] [blame] | 401 | @param egr_port A single port or list of ports |
Dan Talayco | 551befa | 2010-07-15 17:05:32 -0700 | [diff] [blame] | 402 | |
| 403 | parent must implement dataplane, assertTrue and assertEqual |
| 404 | """ |
Dan Talayco | cf26b7a | 2011-08-05 10:15:35 -0700 | [diff] [blame] | 405 | exp_pkt_arg = None |
Rich Lane | 477f481 | 2012-10-04 22:49:00 -0700 | [diff] [blame] | 406 | if config["relax"]: |
Dan Talayco | cf26b7a | 2011-08-05 10:15:35 -0700 | [diff] [blame] | 407 | exp_pkt_arg = exp_pkt |
| 408 | |
Dan Talayco | f6e76c0 | 2012-03-23 10:56:12 -0700 | [diff] [blame] | 409 | if type(egr_ports) == type([]): |
| 410 | egr_port_list = egr_ports |
| 411 | else: |
| 412 | egr_port_list = [egr_ports] |
Dan Talayco | cf26b7a | 2011-08-05 10:15:35 -0700 | [diff] [blame] | 413 | |
Dan Talayco | f6e76c0 | 2012-03-23 10:56:12 -0700 | [diff] [blame] | 414 | # Expect a packet from each port on egr port list |
| 415 | for egr_port in egr_port_list: |
Dan Talayco | d8ae758 | 2012-03-23 12:24:56 -0700 | [diff] [blame] | 416 | check_port = egr_port |
Dan Talayco | c948d0b | 2012-03-23 12:17:54 -0700 | [diff] [blame] | 417 | if egr_port == ofp.OFPP_IN_PORT: |
Dan Talayco | d8ae758 | 2012-03-23 12:24:56 -0700 | [diff] [blame] | 418 | check_port = ing_port |
Dan Talayco | f6e76c0 | 2012-03-23 10:56:12 -0700 | [diff] [blame] | 419 | (rcv_port, rcv_pkt, pkt_time) = parent.dataplane.poll( |
Rich Lane | c8aaa3e | 2012-07-26 19:28:02 -0700 | [diff] [blame] | 420 | port_number=check_port, exp_pkt=exp_pkt_arg) |
Dan Talayco | 551befa | 2010-07-15 17:05:32 -0700 | [diff] [blame] | 421 | |
Dan Talayco | f6e76c0 | 2012-03-23 10:56:12 -0700 | [diff] [blame] | 422 | if rcv_pkt is None: |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 423 | logging.error("ERROR: No packet received from " + |
Dan Talayco | d8ae758 | 2012-03-23 12:24:56 -0700 | [diff] [blame] | 424 | str(check_port)) |
Dan Talayco | 551befa | 2010-07-15 17:05:32 -0700 | [diff] [blame] | 425 | |
Dan Talayco | f6e76c0 | 2012-03-23 10:56:12 -0700 | [diff] [blame] | 426 | parent.assertTrue(rcv_pkt is not None, |
Dan Talayco | d8ae758 | 2012-03-23 12:24:56 -0700 | [diff] [blame] | 427 | "Did not receive packet port " + str(check_port)) |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 428 | logging.debug("Packet len " + str(len(rcv_pkt)) + " in on " + |
Dan Talayco | f6e76c0 | 2012-03-23 10:56:12 -0700 | [diff] [blame] | 429 | str(rcv_port)) |
| 430 | |
| 431 | if str(exp_pkt) != str(rcv_pkt): |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 432 | logging.error("ERROR: Packet match failed.") |
| 433 | logging.debug("Expected len " + str(len(exp_pkt)) + ": " |
Dan Talayco | f6e76c0 | 2012-03-23 10:56:12 -0700 | [diff] [blame] | 434 | + str(exp_pkt).encode('hex')) |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 435 | logging.debug("Received len " + str(len(rcv_pkt)) + ": " |
Dan Talayco | f6e76c0 | 2012-03-23 10:56:12 -0700 | [diff] [blame] | 436 | + str(rcv_pkt).encode('hex')) |
Rich Lane | 5d7e89a | 2012-10-26 16:43:13 -0700 | [diff] [blame] | 437 | logging.debug("Expected packet: " + inspect_packet(scapy.Ether(str(exp_pkt)))) |
| 438 | logging.debug("Received packet: " + inspect_packet(scapy.Ether(str(rcv_pkt)))) |
Dan Talayco | f6e76c0 | 2012-03-23 10:56:12 -0700 | [diff] [blame] | 439 | parent.assertEqual(str(exp_pkt), str(rcv_pkt), |
Dan Talayco | d8ae758 | 2012-03-23 12:24:56 -0700 | [diff] [blame] | 440 | "Packet match error on port " + str(check_port)) |
Dan Talayco | f6e76c0 | 2012-03-23 10:56:12 -0700 | [diff] [blame] | 441 | |
Dan Talayco | 551befa | 2010-07-15 17:05:32 -0700 | [diff] [blame] | 442 | def match_verify(parent, req_match, res_match): |
| 443 | """ |
| 444 | Verify flow matches agree; if they disagree, report where |
| 445 | |
| 446 | parent must implement assertEqual |
| 447 | Use str() to ensure content is compared and not pointers |
| 448 | """ |
| 449 | |
| 450 | parent.assertEqual(req_match.wildcards, res_match.wildcards, |
| 451 | 'Match failed: wildcards: ' + hex(req_match.wildcards) + |
| 452 | " != " + hex(res_match.wildcards)) |
| 453 | parent.assertEqual(req_match.in_port, res_match.in_port, |
| 454 | 'Match failed: in_port: ' + str(req_match.in_port) + |
| 455 | " != " + str(res_match.in_port)) |
| 456 | parent.assertEqual(str(req_match.dl_src), str(res_match.dl_src), |
| 457 | 'Match failed: dl_src: ' + str(req_match.dl_src) + |
| 458 | " != " + str(res_match.dl_src)) |
| 459 | parent.assertEqual(str(req_match.dl_dst), str(res_match.dl_dst), |
| 460 | 'Match failed: dl_dst: ' + str(req_match.dl_dst) + |
| 461 | " != " + str(res_match.dl_dst)) |
| 462 | parent.assertEqual(req_match.dl_vlan, res_match.dl_vlan, |
| 463 | 'Match failed: dl_vlan: ' + str(req_match.dl_vlan) + |
| 464 | " != " + str(res_match.dl_vlan)) |
| 465 | parent.assertEqual(req_match.dl_vlan_pcp, res_match.dl_vlan_pcp, |
| 466 | 'Match failed: dl_vlan_pcp: ' + |
| 467 | str(req_match.dl_vlan_pcp) + " != " + |
| 468 | str(res_match.dl_vlan_pcp)) |
| 469 | parent.assertEqual(req_match.dl_type, res_match.dl_type, |
| 470 | 'Match failed: dl_type: ' + str(req_match.dl_type) + |
| 471 | " != " + str(res_match.dl_type)) |
| 472 | |
| 473 | if (not(req_match.wildcards & ofp.OFPFW_DL_TYPE) |
| 474 | and (req_match.dl_type == IP_ETHERTYPE)): |
| 475 | parent.assertEqual(req_match.nw_tos, res_match.nw_tos, |
| 476 | 'Match failed: nw_tos: ' + str(req_match.nw_tos) + |
| 477 | " != " + str(res_match.nw_tos)) |
| 478 | parent.assertEqual(req_match.nw_proto, res_match.nw_proto, |
| 479 | 'Match failed: nw_proto: ' + str(req_match.nw_proto) + |
| 480 | " != " + str(res_match.nw_proto)) |
| 481 | parent.assertEqual(req_match.nw_src, res_match.nw_src, |
| 482 | 'Match failed: nw_src: ' + str(req_match.nw_src) + |
| 483 | " != " + str(res_match.nw_src)) |
| 484 | parent.assertEqual(req_match.nw_dst, res_match.nw_dst, |
| 485 | 'Match failed: nw_dst: ' + str(req_match.nw_dst) + |
| 486 | " != " + str(res_match.nw_dst)) |
| 487 | |
| 488 | if (not(req_match.wildcards & ofp.OFPFW_NW_PROTO) |
| 489 | and ((req_match.nw_proto == TCP_PROTOCOL) |
| 490 | or (req_match.nw_proto == UDP_PROTOCOL))): |
| 491 | parent.assertEqual(req_match.tp_src, res_match.tp_src, |
| 492 | 'Match failed: tp_src: ' + |
| 493 | str(req_match.tp_src) + |
| 494 | " != " + str(res_match.tp_src)) |
| 495 | parent.assertEqual(req_match.tp_dst, res_match.tp_dst, |
| 496 | 'Match failed: tp_dst: ' + |
| 497 | str(req_match.tp_dst) + |
| 498 | " != " + str(res_match.tp_dst)) |
| 499 | |
Ed Swierk | 99a74de | 2012-08-22 06:40:54 -0700 | [diff] [blame] | 500 | def packet_to_flow_match(parent, packet): |
| 501 | match = parse.packet_to_flow_match(packet) |
| 502 | match.wildcards |= required_wildcards(parent) |
| 503 | return match |
| 504 | |
| 505 | def flow_msg_create(parent, pkt, ing_port=None, action_list=None, wildcards=None, |
Dan Talayco | f6e76c0 | 2012-03-23 10:56:12 -0700 | [diff] [blame] | 506 | egr_ports=None, egr_queue=None, check_expire=False, in_band=False): |
Dan Talayco | 551befa | 2010-07-15 17:05:32 -0700 | [diff] [blame] | 507 | """ |
| 508 | Create a flow message |
| 509 | |
| 510 | Match on packet with given wildcards. |
| 511 | See flow_match_test for other parameter descriptoins |
| 512 | @param egr_queue if not None, make the output an enqueue action |
Dan Talayco | 677c0b7 | 2011-08-23 22:53:38 -0700 | [diff] [blame] | 513 | @param in_band if True, do not wildcard ingress port |
Dan Talayco | f6e76c0 | 2012-03-23 10:56:12 -0700 | [diff] [blame] | 514 | @param egr_ports None (drop), single port or list of ports |
Dan Talayco | 551befa | 2010-07-15 17:05:32 -0700 | [diff] [blame] | 515 | """ |
| 516 | match = parse.packet_to_flow_match(pkt) |
| 517 | parent.assertTrue(match is not None, "Flow match from pkt failed") |
Ed Swierk | 99a74de | 2012-08-22 06:40:54 -0700 | [diff] [blame] | 518 | if wildcards is None: |
| 519 | wildcards = required_wildcards(parent) |
Dan Talayco | 677c0b7 | 2011-08-23 22:53:38 -0700 | [diff] [blame] | 520 | if in_band: |
| 521 | wildcards &= ~ofp.OFPFW_IN_PORT |
Dan Talayco | 551befa | 2010-07-15 17:05:32 -0700 | [diff] [blame] | 522 | match.wildcards = wildcards |
| 523 | match.in_port = ing_port |
| 524 | |
Dan Talayco | f6e76c0 | 2012-03-23 10:56:12 -0700 | [diff] [blame] | 525 | if type(egr_ports) == type([]): |
| 526 | egr_port_list = egr_ports |
| 527 | else: |
| 528 | egr_port_list = [egr_ports] |
| 529 | |
Dan Talayco | 551befa | 2010-07-15 17:05:32 -0700 | [diff] [blame] | 530 | request = message.flow_mod() |
| 531 | request.match = match |
| 532 | request.buffer_id = 0xffffffff |
| 533 | if check_expire: |
| 534 | request.flags |= ofp.OFPFF_SEND_FLOW_REM |
| 535 | request.hard_timeout = 1 |
| 536 | |
| 537 | if action_list is not None: |
| 538 | for act in action_list: |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 539 | logging.debug("Adding action " + act.show()) |
Rich Lane | e30455b | 2013-01-03 16:24:44 -0800 | [diff] [blame] | 540 | request.actions.add(act) |
Dan Talayco | 551befa | 2010-07-15 17:05:32 -0700 | [diff] [blame] | 541 | |
| 542 | # Set up output/enqueue action if directed |
| 543 | if egr_queue is not None: |
Dan Talayco | f6e76c0 | 2012-03-23 10:56:12 -0700 | [diff] [blame] | 544 | parent.assertTrue(egr_ports is not None, "Egress port not set") |
Dan Talayco | 551befa | 2010-07-15 17:05:32 -0700 | [diff] [blame] | 545 | act = action.action_enqueue() |
Dan Talayco | f6e76c0 | 2012-03-23 10:56:12 -0700 | [diff] [blame] | 546 | for egr_port in egr_port_list: |
| 547 | act.port = egr_port |
| 548 | act.queue_id = egr_queue |
Rich Lane | e30455b | 2013-01-03 16:24:44 -0800 | [diff] [blame] | 549 | request.actions.add(act) |
Dan Talayco | f6e76c0 | 2012-03-23 10:56:12 -0700 | [diff] [blame] | 550 | elif egr_ports is not None: |
| 551 | for egr_port in egr_port_list: |
| 552 | act = action.action_output() |
| 553 | act.port = egr_port |
Rich Lane | e30455b | 2013-01-03 16:24:44 -0800 | [diff] [blame] | 554 | request.actions.add(act) |
Dan Talayco | 551befa | 2010-07-15 17:05:32 -0700 | [diff] [blame] | 555 | |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 556 | logging.debug(request.show()) |
Dan Talayco | 551befa | 2010-07-15 17:05:32 -0700 | [diff] [blame] | 557 | |
| 558 | return request |
| 559 | |
Jeffrey Townsend | f3eae9c | 2012-03-28 18:23:21 -0700 | [diff] [blame] | 560 | def flow_msg_install(parent, request, clear_table_override=None): |
Dan Talayco | 551befa | 2010-07-15 17:05:32 -0700 | [diff] [blame] | 561 | """ |
| 562 | Install a flow mod message in the switch |
| 563 | |
| 564 | @param parent Must implement controller, assertEqual, assertTrue |
| 565 | @param request The request, all set to go |
| 566 | @param clear_table If true, clear the flow table before installing |
| 567 | """ |
Dan Talayco | 8a64e33 | 2012-03-28 14:53:20 -0700 | [diff] [blame] | 568 | |
Rich Lane | 2014f9b | 2012-10-05 15:29:40 -0700 | [diff] [blame] | 569 | clear_table = test_param_get('clear_table', default=True) |
Jeffrey Townsend | f3eae9c | 2012-03-28 18:23:21 -0700 | [diff] [blame] | 570 | if(clear_table_override != None): |
| 571 | clear_table = clear_table_override |
| 572 | |
| 573 | if clear_table: |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 574 | logging.debug("Clear flow table") |
Rich Lane | 32bf948 | 2013-01-03 17:26:30 -0800 | [diff] [blame] | 575 | delete_all_flows(parent.controller) |
Dan Talayco | 551befa | 2010-07-15 17:05:32 -0700 | [diff] [blame] | 576 | |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 577 | logging.debug("Insert flow") |
Rich Lane | 5c3151c | 2013-01-03 17:15:41 -0800 | [diff] [blame] | 578 | parent.controller.message_send(request) |
Rich Lane | e912d03 | 2012-12-22 14:28:33 -0800 | [diff] [blame] | 579 | |
Rich Lane | 3a261d5 | 2013-01-03 17:45:08 -0800 | [diff] [blame] | 580 | do_barrier(parent.controller) |
Dan Talayco | 551befa | 2010-07-15 17:05:32 -0700 | [diff] [blame] | 581 | |
Ed Swierk | 99a74de | 2012-08-22 06:40:54 -0700 | [diff] [blame] | 582 | def flow_match_test_port_pair(parent, ing_port, egr_ports, wildcards=None, |
Dan Talayco | 551befa | 2010-07-15 17:05:32 -0700 | [diff] [blame] | 583 | dl_vlan=-1, pkt=None, exp_pkt=None, |
Rich Lane | e5779d3 | 2012-10-05 17:56:04 -0700 | [diff] [blame] | 584 | action_list=None): |
Dan Talayco | 551befa | 2010-07-15 17:05:32 -0700 | [diff] [blame] | 585 | """ |
| 586 | Flow match test on single TCP packet |
Dan Talayco | f6e76c0 | 2012-03-23 10:56:12 -0700 | [diff] [blame] | 587 | @param egr_ports A single port or list of ports |
Dan Talayco | 551befa | 2010-07-15 17:05:32 -0700 | [diff] [blame] | 588 | |
| 589 | Run test with packet through switch from ing_port to egr_port |
| 590 | See flow_match_test for parameter descriptions |
| 591 | """ |
| 592 | |
Ed Swierk | 99a74de | 2012-08-22 06:40:54 -0700 | [diff] [blame] | 593 | if wildcards is None: |
| 594 | wildcards = required_wildcards(parent) |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 595 | logging.info("Pkt match test: " + str(ing_port) + " to " + |
Dan Talayco | f6e76c0 | 2012-03-23 10:56:12 -0700 | [diff] [blame] | 596 | str(egr_ports)) |
Rich Lane | e5779d3 | 2012-10-05 17:56:04 -0700 | [diff] [blame] | 597 | logging.debug(" WC: " + hex(wildcards) + " vlan: " + str(dl_vlan)) |
Dan Talayco | 551befa | 2010-07-15 17:05:32 -0700 | [diff] [blame] | 598 | if pkt is None: |
| 599 | pkt = simple_tcp_packet(dl_vlan_enable=(dl_vlan >= 0), dl_vlan=dl_vlan) |
| 600 | |
| 601 | request = flow_msg_create(parent, pkt, ing_port=ing_port, |
Dan Talayco | f6e76c0 | 2012-03-23 10:56:12 -0700 | [diff] [blame] | 602 | wildcards=wildcards, egr_ports=egr_ports, |
Dan Talayco | 551befa | 2010-07-15 17:05:32 -0700 | [diff] [blame] | 603 | action_list=action_list) |
| 604 | |
| 605 | flow_msg_install(parent, request) |
| 606 | |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 607 | logging.debug("Send packet: " + str(ing_port) + " to " + |
Dan Talayco | f6e76c0 | 2012-03-23 10:56:12 -0700 | [diff] [blame] | 608 | str(egr_ports)) |
Dan Talayco | 551befa | 2010-07-15 17:05:32 -0700 | [diff] [blame] | 609 | parent.dataplane.send(ing_port, str(pkt)) |
| 610 | |
| 611 | if exp_pkt is None: |
| 612 | exp_pkt = pkt |
Dan Talayco | c948d0b | 2012-03-23 12:17:54 -0700 | [diff] [blame] | 613 | receive_pkt_verify(parent, egr_ports, exp_pkt, ing_port) |
Dan Talayco | 551befa | 2010-07-15 17:05:32 -0700 | [diff] [blame] | 614 | |
Rich Lane | 89725bb | 2012-12-03 16:23:27 -0800 | [diff] [blame] | 615 | def flow_match_test_pktout(parent, ing_port, egr_ports, |
| 616 | dl_vlan=-1, pkt=None, exp_pkt=None, |
| 617 | action_list=None): |
| 618 | """ |
| 619 | Packet-out test on single TCP packet |
| 620 | @param egr_ports A single port or list of ports |
| 621 | |
| 622 | Run test sending packet-out to egr_ports. The goal is to test the actions |
| 623 | taken on the packet, not the matching which is of course irrelevant. |
| 624 | See flow_match_test for parameter descriptions |
| 625 | """ |
| 626 | |
| 627 | if pkt is None: |
| 628 | pkt = simple_tcp_packet(dl_vlan_enable=(dl_vlan >= 0), dl_vlan=dl_vlan) |
| 629 | |
| 630 | msg = message.packet_out() |
| 631 | msg.in_port = ing_port |
| 632 | msg.data = str(pkt) |
| 633 | if action_list is not None: |
| 634 | for act in action_list: |
Rich Lane | e30455b | 2013-01-03 16:24:44 -0800 | [diff] [blame] | 635 | msg.actions.add(act) |
Rich Lane | 89725bb | 2012-12-03 16:23:27 -0800 | [diff] [blame] | 636 | |
| 637 | # Set up output action |
| 638 | if egr_ports is not None: |
| 639 | for egr_port in egr_ports: |
| 640 | act = action.action_output() |
| 641 | act.port = egr_port |
Rich Lane | e30455b | 2013-01-03 16:24:44 -0800 | [diff] [blame] | 642 | msg.actions.add(act) |
Rich Lane | 89725bb | 2012-12-03 16:23:27 -0800 | [diff] [blame] | 643 | |
| 644 | logging.debug(msg.show()) |
Rich Lane | 5c3151c | 2013-01-03 17:15:41 -0800 | [diff] [blame] | 645 | parent.controller.message_send(msg) |
Rich Lane | 89725bb | 2012-12-03 16:23:27 -0800 | [diff] [blame] | 646 | |
| 647 | if exp_pkt is None: |
| 648 | exp_pkt = pkt |
| 649 | receive_pkt_verify(parent, egr_ports, exp_pkt, ing_port) |
| 650 | |
Dan Talayco | f6e76c0 | 2012-03-23 10:56:12 -0700 | [diff] [blame] | 651 | def get_egr_list(parent, of_ports, how_many, exclude_list=[]): |
| 652 | """ |
| 653 | Generate a list of ports avoiding those in the exclude list |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 654 | @param parent Supplies logging |
Dan Talayco | f6e76c0 | 2012-03-23 10:56:12 -0700 | [diff] [blame] | 655 | @param of_ports List of OF port numbers |
| 656 | @param how_many Number of ports to be added to the list |
| 657 | @param exclude_list List of ports not to be used |
| 658 | @returns An empty list if unable to find enough ports |
| 659 | """ |
| 660 | |
Dan Talayco | c948d0b | 2012-03-23 12:17:54 -0700 | [diff] [blame] | 661 | if how_many == 0: |
| 662 | return [] |
| 663 | |
Dan Talayco | f6e76c0 | 2012-03-23 10:56:12 -0700 | [diff] [blame] | 664 | count = 0 |
| 665 | egr_ports = [] |
| 666 | for egr_idx in range(len(of_ports)): |
| 667 | if of_ports[egr_idx] not in exclude_list: |
| 668 | egr_ports.append(of_ports[egr_idx]) |
| 669 | count += 1 |
| 670 | if count >= how_many: |
| 671 | return egr_ports |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 672 | logging.debug("Could not generate enough egress ports for test") |
Dan Talayco | f6e76c0 | 2012-03-23 10:56:12 -0700 | [diff] [blame] | 673 | return [] |
| 674 | |
Ed Swierk | 99a74de | 2012-08-22 06:40:54 -0700 | [diff] [blame] | 675 | def flow_match_test(parent, port_map, wildcards=None, dl_vlan=-1, pkt=None, |
Rich Lane | e5779d3 | 2012-10-05 17:56:04 -0700 | [diff] [blame] | 676 | exp_pkt=None, action_list=None, |
Dan Talayco | c948d0b | 2012-03-23 12:17:54 -0700 | [diff] [blame] | 677 | max_test=0, egr_count=1, ing_port=False): |
Dan Talayco | 551befa | 2010-07-15 17:05:32 -0700 | [diff] [blame] | 678 | """ |
Rich Lane | 89725bb | 2012-12-03 16:23:27 -0800 | [diff] [blame] | 679 | Run flow_match_test_port_pair on all port pairs and packet-out |
Dan Talayco | 551befa | 2010-07-15 17:05:32 -0700 | [diff] [blame] | 680 | |
| 681 | @param max_test If > 0 no more than this number of tests are executed. |
| 682 | @param parent Must implement controller, dataplane, assertTrue, assertEqual |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 683 | and logging |
Dan Talayco | 551befa | 2010-07-15 17:05:32 -0700 | [diff] [blame] | 684 | @param pkt If not None, use this packet for ingress |
| 685 | @param wildcards For flow match entry |
Dan Talayco | 7918422 | 2010-11-01 12:24:29 -0700 | [diff] [blame] | 686 | @param dl_vlan If not -1, and pkt is None, create a pkt w/ VLAN tag |
Dan Talayco | 551befa | 2010-07-15 17:05:32 -0700 | [diff] [blame] | 687 | @param exp_pkt If not None, use this as the expected output pkt; els use pkt |
| 688 | @param action_list Additional actions to add to flow mod |
Dan Talayco | cfa172f | 2012-03-23 12:03:00 -0700 | [diff] [blame] | 689 | @param egr_count Number of egress ports; -1 means get from config w/ dflt 2 |
Dan Talayco | 551befa | 2010-07-15 17:05:32 -0700 | [diff] [blame] | 690 | """ |
Ed Swierk | 99a74de | 2012-08-22 06:40:54 -0700 | [diff] [blame] | 691 | if wildcards is None: |
| 692 | wildcards = required_wildcards(parent) |
Dan Talayco | 551befa | 2010-07-15 17:05:32 -0700 | [diff] [blame] | 693 | of_ports = port_map.keys() |
| 694 | of_ports.sort() |
| 695 | parent.assertTrue(len(of_ports) > 1, "Not enough ports for test") |
| 696 | test_count = 0 |
| 697 | |
Dan Talayco | cfa172f | 2012-03-23 12:03:00 -0700 | [diff] [blame] | 698 | if egr_count == -1: |
Rich Lane | 2014f9b | 2012-10-05 15:29:40 -0700 | [diff] [blame] | 699 | egr_count = test_param_get('egr_count', default=2) |
Dan Talayco | cfa172f | 2012-03-23 12:03:00 -0700 | [diff] [blame] | 700 | |
Dan Talayco | 551befa | 2010-07-15 17:05:32 -0700 | [diff] [blame] | 701 | for ing_idx in range(len(of_ports)): |
| 702 | ingress_port = of_ports[ing_idx] |
Dan Talayco | f6e76c0 | 2012-03-23 10:56:12 -0700 | [diff] [blame] | 703 | egr_ports = get_egr_list(parent, of_ports, egr_count, |
| 704 | exclude_list=[ingress_port]) |
Dan Talayco | c948d0b | 2012-03-23 12:17:54 -0700 | [diff] [blame] | 705 | if ing_port: |
| 706 | egr_ports.append(ofp.OFPP_IN_PORT) |
Dan Talayco | f6e76c0 | 2012-03-23 10:56:12 -0700 | [diff] [blame] | 707 | if len(egr_ports) == 0: |
| 708 | parent.assertTrue(0, "Failed to generate egress port list") |
| 709 | |
| 710 | flow_match_test_port_pair(parent, ingress_port, egr_ports, |
| 711 | wildcards=wildcards, dl_vlan=dl_vlan, |
| 712 | pkt=pkt, exp_pkt=exp_pkt, |
Rich Lane | e5779d3 | 2012-10-05 17:56:04 -0700 | [diff] [blame] | 713 | action_list=action_list) |
Dan Talayco | f6e76c0 | 2012-03-23 10:56:12 -0700 | [diff] [blame] | 714 | test_count += 1 |
| 715 | if (max_test > 0) and (test_count > max_test): |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 716 | logging.info("Ran " + str(test_count) + " tests; exiting") |
Rich Lane | 89725bb | 2012-12-03 16:23:27 -0800 | [diff] [blame] | 717 | break |
| 718 | |
| 719 | |
| 720 | ingress_port = of_ports[0] |
| 721 | egr_ports = get_egr_list(parent, of_ports, egr_count, |
| 722 | exclude_list=[ingress_port]) |
| 723 | if ing_port: |
| 724 | egr_ports.append(ofp.OFPP_IN_PORT) |
| 725 | flow_match_test_pktout(parent, ingress_port, egr_ports, |
| 726 | dl_vlan=dl_vlan, |
| 727 | pkt=pkt, exp_pkt=exp_pkt, |
| 728 | action_list=action_list) |
Dan Talayco | 551befa | 2010-07-15 17:05:32 -0700 | [diff] [blame] | 729 | |
Rich Lane | 2014f9b | 2012-10-05 15:29:40 -0700 | [diff] [blame] | 730 | def test_param_get(key, default=None): |
Dan Talayco | 4b2bee6 | 2010-07-20 14:10:05 -0700 | [diff] [blame] | 731 | """ |
| 732 | Return value passed via test-params if present |
| 733 | |
Dan Talayco | 4b2bee6 | 2010-07-20 14:10:05 -0700 | [diff] [blame] | 734 | @param key The lookup key |
| 735 | @param default Default value to use if not found |
| 736 | |
| 737 | If the pair 'key=val' appeared in the string passed to --test-params |
| 738 | on the command line, return val (as interpreted by exec). Otherwise |
| 739 | return default value. |
Dan Talayco | f6e76c0 | 2012-03-23 10:56:12 -0700 | [diff] [blame] | 740 | |
| 741 | WARNING: TEST PARAMETERS MUST BE PYTHON IDENTIFIERS; |
| 742 | eg egr_count, not egr-count. |
Dan Talayco | 4b2bee6 | 2010-07-20 14:10:05 -0700 | [diff] [blame] | 743 | """ |
| 744 | try: |
| 745 | exec config["test_params"] |
| 746 | except: |
| 747 | return default |
| 748 | |
| 749 | s = "val = " + str(key) |
| 750 | try: |
| 751 | exec s |
| 752 | return val |
| 753 | except: |
| 754 | return default |
| 755 | |
| 756 | def action_generate(parent, field_to_mod, mod_field_vals): |
| 757 | """ |
| 758 | Create an action to modify the field indicated in field_to_mod |
| 759 | |
| 760 | @param parent Must implement, assertTrue |
| 761 | @param field_to_mod The field to modify as a string name |
| 762 | @param mod_field_vals Hash of values to use for modified values |
| 763 | """ |
| 764 | |
| 765 | act = None |
| 766 | |
| 767 | if field_to_mod in ['pktlen']: |
| 768 | return None |
| 769 | |
| 770 | if field_to_mod == 'dl_dst': |
| 771 | act = action.action_set_dl_dst() |
| 772 | act.dl_addr = parse.parse_mac(mod_field_vals['dl_dst']) |
| 773 | elif field_to_mod == 'dl_src': |
| 774 | act = action.action_set_dl_src() |
| 775 | act.dl_addr = parse.parse_mac(mod_field_vals['dl_src']) |
| 776 | elif field_to_mod == 'dl_vlan_enable': |
| 777 | if not mod_field_vals['dl_vlan_enable']: # Strip VLAN tag |
| 778 | act = action.action_strip_vlan() |
| 779 | # Add VLAN tag is handled by dl_vlan field |
| 780 | # Will return None in this case |
| 781 | elif field_to_mod == 'dl_vlan': |
| 782 | act = action.action_set_vlan_vid() |
| 783 | act.vlan_vid = mod_field_vals['dl_vlan'] |
| 784 | elif field_to_mod == 'dl_vlan_pcp': |
| 785 | act = action.action_set_vlan_pcp() |
| 786 | act.vlan_pcp = mod_field_vals['dl_vlan_pcp'] |
| 787 | elif field_to_mod == 'ip_src': |
| 788 | act = action.action_set_nw_src() |
| 789 | act.nw_addr = parse.parse_ip(mod_field_vals['ip_src']) |
| 790 | elif field_to_mod == 'ip_dst': |
| 791 | act = action.action_set_nw_dst() |
| 792 | act.nw_addr = parse.parse_ip(mod_field_vals['ip_dst']) |
| 793 | elif field_to_mod == 'ip_tos': |
| 794 | act = action.action_set_nw_tos() |
| 795 | act.nw_tos = mod_field_vals['ip_tos'] |
| 796 | elif field_to_mod == 'tcp_sport': |
| 797 | act = action.action_set_tp_src() |
| 798 | act.tp_port = mod_field_vals['tcp_sport'] |
| 799 | elif field_to_mod == 'tcp_dport': |
| 800 | act = action.action_set_tp_dst() |
| 801 | act.tp_port = mod_field_vals['tcp_dport'] |
Rich Lane | 110e0e3 | 2012-10-26 16:21:46 -0700 | [diff] [blame] | 802 | elif field_to_mod == 'udp_sport': |
| 803 | act = action.action_set_tp_src() |
| 804 | act.tp_port = mod_field_vals['udp_sport'] |
| 805 | elif field_to_mod == 'udp_dport': |
| 806 | act = action.action_set_tp_dst() |
| 807 | act.tp_port = mod_field_vals['udp_dport'] |
Dan Talayco | 4b2bee6 | 2010-07-20 14:10:05 -0700 | [diff] [blame] | 808 | else: |
| 809 | parent.assertTrue(0, "Unknown field to modify: " + str(field_to_mod)) |
| 810 | |
| 811 | return act |
| 812 | |
| 813 | def pkt_action_setup(parent, start_field_vals={}, mod_field_vals={}, |
Rich Lane | 110e0e3 | 2012-10-26 16:21:46 -0700 | [diff] [blame] | 814 | mod_fields=[], tp="tcp", check_test_params=False): |
Dan Talayco | 4b2bee6 | 2010-07-20 14:10:05 -0700 | [diff] [blame] | 815 | """ |
| 816 | Set up the ingress and expected packet and action list for a test |
| 817 | |
Rich Lane | 2014f9b | 2012-10-05 15:29:40 -0700 | [diff] [blame] | 818 | @param parent Must implement assertTrue |
Dan Talayco | 4b2bee6 | 2010-07-20 14:10:05 -0700 | [diff] [blame] | 819 | @param start_field_values Field values to use for ingress packet (optional) |
| 820 | @param mod_field_values Field values to use for modified packet (optional) |
| 821 | @param mod_fields The list of fields to be modified by the switch in the test. |
| 822 | @params check_test_params If True, will check the parameters vid, add_vlan |
| 823 | and strip_vlan from the command line. |
| 824 | |
| 825 | Returns a triple: pkt-to-send, expected-pkt, action-list |
| 826 | """ |
| 827 | |
| 828 | new_actions = [] |
| 829 | |
Dan Talayco | 4b2bee6 | 2010-07-20 14:10:05 -0700 | [diff] [blame] | 830 | base_pkt_params = {} |
| 831 | base_pkt_params['pktlen'] = 100 |
| 832 | base_pkt_params['dl_dst'] = '00:DE:F0:12:34:56' |
| 833 | base_pkt_params['dl_src'] = '00:23:45:67:89:AB' |
| 834 | base_pkt_params['dl_vlan_enable'] = False |
| 835 | base_pkt_params['dl_vlan'] = 2 |
| 836 | base_pkt_params['dl_vlan_pcp'] = 0 |
| 837 | base_pkt_params['ip_src'] = '192.168.0.1' |
| 838 | base_pkt_params['ip_dst'] = '192.168.0.2' |
| 839 | base_pkt_params['ip_tos'] = 0 |
Rich Lane | 110e0e3 | 2012-10-26 16:21:46 -0700 | [diff] [blame] | 840 | if tp == "tcp": |
| 841 | base_pkt_params['tcp_sport'] = 1234 |
| 842 | base_pkt_params['tcp_dport'] = 80 |
| 843 | elif tp == "udp": |
| 844 | base_pkt_params['udp_sport'] = 1234 |
| 845 | base_pkt_params['udp_dport'] = 80 |
Dan Talayco | 4b2bee6 | 2010-07-20 14:10:05 -0700 | [diff] [blame] | 846 | for keyname in start_field_vals.keys(): |
| 847 | base_pkt_params[keyname] = start_field_vals[keyname] |
| 848 | |
| 849 | mod_pkt_params = {} |
| 850 | mod_pkt_params['pktlen'] = 100 |
| 851 | mod_pkt_params['dl_dst'] = '00:21:0F:ED:CB:A9' |
| 852 | mod_pkt_params['dl_src'] = '00:ED:CB:A9:87:65' |
| 853 | mod_pkt_params['dl_vlan_enable'] = False |
| 854 | mod_pkt_params['dl_vlan'] = 3 |
| 855 | mod_pkt_params['dl_vlan_pcp'] = 7 |
| 856 | mod_pkt_params['ip_src'] = '10.20.30.40' |
| 857 | mod_pkt_params['ip_dst'] = '50.60.70.80' |
| 858 | mod_pkt_params['ip_tos'] = 0xf0 |
Rich Lane | 110e0e3 | 2012-10-26 16:21:46 -0700 | [diff] [blame] | 859 | if tp == "tcp": |
| 860 | mod_pkt_params['tcp_sport'] = 4321 |
| 861 | mod_pkt_params['tcp_dport'] = 8765 |
| 862 | elif tp == "udp": |
| 863 | mod_pkt_params['udp_sport'] = 4321 |
| 864 | mod_pkt_params['udp_dport'] = 8765 |
Dan Talayco | 4b2bee6 | 2010-07-20 14:10:05 -0700 | [diff] [blame] | 865 | for keyname in mod_field_vals.keys(): |
| 866 | mod_pkt_params[keyname] = mod_field_vals[keyname] |
| 867 | |
| 868 | # Check for test param modifications |
| 869 | strip = False |
| 870 | if check_test_params: |
Rich Lane | 2014f9b | 2012-10-05 15:29:40 -0700 | [diff] [blame] | 871 | add_vlan = test_param_get('add_vlan') |
| 872 | strip_vlan = test_param_get('strip_vlan') |
| 873 | vid = test_param_get('vid') |
Dan Talayco | 4b2bee6 | 2010-07-20 14:10:05 -0700 | [diff] [blame] | 874 | |
| 875 | if add_vlan and strip_vlan: |
| 876 | parent.assertTrue(0, "Add and strip VLAN both specified") |
| 877 | |
| 878 | if vid: |
| 879 | base_pkt_params['dl_vlan_enable'] = True |
| 880 | base_pkt_params['dl_vlan'] = vid |
| 881 | if 'dl_vlan' in mod_fields: |
| 882 | mod_pkt_params['dl_vlan'] = vid + 1 |
| 883 | |
| 884 | if add_vlan: |
| 885 | base_pkt_params['dl_vlan_enable'] = False |
| 886 | mod_pkt_params['dl_vlan_enable'] = True |
| 887 | mod_pkt_params['pktlen'] = base_pkt_params['pktlen'] + 4 |
| 888 | mod_fields.append('pktlen') |
| 889 | mod_fields.append('dl_vlan_enable') |
| 890 | if 'dl_vlan' not in mod_fields: |
| 891 | mod_fields.append('dl_vlan') |
| 892 | elif strip_vlan: |
| 893 | base_pkt_params['dl_vlan_enable'] = True |
| 894 | mod_pkt_params['dl_vlan_enable'] = False |
| 895 | mod_pkt_params['pktlen'] = base_pkt_params['pktlen'] - 4 |
| 896 | mod_fields.append('dl_vlan_enable') |
| 897 | mod_fields.append('pktlen') |
| 898 | |
Rich Lane | 110e0e3 | 2012-10-26 16:21:46 -0700 | [diff] [blame] | 899 | if tp == "tcp": |
| 900 | packet_builder = simple_tcp_packet |
| 901 | elif tp == "udp": |
| 902 | packet_builder = simple_udp_packet |
| 903 | else: |
| 904 | raise NotImplementedError("unknown transport protocol %s" % tp) |
| 905 | |
Dan Talayco | 4b2bee6 | 2010-07-20 14:10:05 -0700 | [diff] [blame] | 906 | # Build the ingress packet |
Rich Lane | 110e0e3 | 2012-10-26 16:21:46 -0700 | [diff] [blame] | 907 | ingress_pkt = packet_builder(**base_pkt_params) |
Dan Talayco | 4b2bee6 | 2010-07-20 14:10:05 -0700 | [diff] [blame] | 908 | |
| 909 | # Build the expected packet, modifying the indicated fields |
| 910 | for item in mod_fields: |
| 911 | base_pkt_params[item] = mod_pkt_params[item] |
| 912 | act = action_generate(parent, item, mod_pkt_params) |
| 913 | if act: |
| 914 | new_actions.append(act) |
| 915 | |
Rich Lane | 110e0e3 | 2012-10-26 16:21:46 -0700 | [diff] [blame] | 916 | expected_pkt = packet_builder(**base_pkt_params) |
Dan Talayco | 4b2bee6 | 2010-07-20 14:10:05 -0700 | [diff] [blame] | 917 | |
| 918 | return (ingress_pkt, expected_pkt, new_actions) |
Dan Talayco | 677c0b7 | 2011-08-23 22:53:38 -0700 | [diff] [blame] | 919 | |
| 920 | # Generate a simple "drop" flow mod |
| 921 | # If in_band is true, then only drop from first test port |
| 922 | def flow_mod_gen(port_map, in_band): |
| 923 | request = message.flow_mod() |
| 924 | request.match.wildcards = ofp.OFPFW_ALL |
| 925 | if in_band: |
| 926 | request.match.wildcards = ofp.OFPFW_ALL - ofp.OFPFW_IN_PORT |
| 927 | for of_port, ifname in port_map.items(): # Grab first port |
| 928 | break |
| 929 | request.match.in_port = of_port |
| 930 | request.buffer_id = 0xffffffff |
| 931 | return request |
Dan Talayco | ba3745c | 2010-07-21 21:51:08 -0700 | [diff] [blame] | 932 | |
| 933 | def skip_message_emit(parent, s): |
| 934 | """ |
| 935 | Print out a 'skipped' message to stderr |
| 936 | |
| 937 | @param s The string to print out to the log file |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 938 | @param parent Must implement config object |
Dan Talayco | ba3745c | 2010-07-21 21:51:08 -0700 | [diff] [blame] | 939 | """ |
| 940 | global skipped_test_count |
| 941 | |
| 942 | skipped_test_count += 1 |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 943 | logging.info("Skipping: " + s) |
Rich Lane | 477f481 | 2012-10-04 22:49:00 -0700 | [diff] [blame] | 944 | if config["dbg_level"] < logging.WARNING: |
Dan Talayco | ba3745c | 2010-07-21 21:51:08 -0700 | [diff] [blame] | 945 | sys.stderr.write("(skipped) ") |
| 946 | else: |
| 947 | sys.stderr.write("(S)") |
Dan Talayco | 677c0b7 | 2011-08-23 22:53:38 -0700 | [diff] [blame] | 948 | |
Dan Talayco | 8a64e33 | 2012-03-28 14:53:20 -0700 | [diff] [blame] | 949 | |
| 950 | def all_stats_get(parent): |
| 951 | """ |
| 952 | Get the aggregate stats for all flows in the table |
| 953 | @param parent Test instance with controller connection and assert |
| 954 | @returns dict with keys flows, packets, bytes, active (flows), |
| 955 | lookups, matched |
| 956 | """ |
| 957 | stat_req = message.aggregate_stats_request() |
| 958 | stat_req.match = ofp.ofp_match() |
| 959 | stat_req.match.wildcards = ofp.OFPFW_ALL |
| 960 | stat_req.table_id = 0xff |
| 961 | stat_req.out_port = ofp.OFPP_NONE |
| 962 | |
| 963 | rv = {} |
| 964 | |
Rich Lane | c8aaa3e | 2012-07-26 19:28:02 -0700 | [diff] [blame] | 965 | (reply, pkt) = parent.controller.transact(stat_req) |
Dan Talayco | 8a64e33 | 2012-03-28 14:53:20 -0700 | [diff] [blame] | 966 | parent.assertTrue(len(reply.stats) == 1, "Did not receive flow stats reply") |
| 967 | |
| 968 | for obj in reply.stats: |
| 969 | (rv["flows"], rv["packets"], rv["bytes"]) = (obj.flow_count, |
| 970 | obj.packet_count, obj.byte_count) |
| 971 | break |
| 972 | |
| 973 | request = message.table_stats_request() |
Rich Lane | c8aaa3e | 2012-07-26 19:28:02 -0700 | [diff] [blame] | 974 | (reply , pkt) = parent.controller.transact(request) |
Dan Talayco | 8a64e33 | 2012-03-28 14:53:20 -0700 | [diff] [blame] | 975 | |
| 976 | |
| 977 | (rv["active"], rv["lookups"], rv["matched"]) = (0,0,0) |
| 978 | for obj in reply.stats: |
| 979 | rv["active"] += obj.active_count |
| 980 | rv["lookups"] += obj.lookup_count |
| 981 | rv["matched"] += obj.matched_count |
| 982 | |
| 983 | return rv |
Dan Talayco | 2baf8b5 | 2012-03-30 09:55:42 -0700 | [diff] [blame] | 984 | |
| 985 | FILTER=''.join([(len(repr(chr(x)))==3) and chr(x) or '.' |
| 986 | for x in range(256)]) |
| 987 | |
| 988 | def hex_dump_buffer(src, length=16): |
| 989 | """ |
| 990 | Convert src to a hex dump string and return the string |
| 991 | @param src The source buffer |
| 992 | @param length The number of bytes shown in each line |
| 993 | @returns A string showing the hex dump |
| 994 | """ |
Dan Talayco | c516fa0 | 2012-04-12 22:28:43 -0700 | [diff] [blame] | 995 | result = ["\n"] |
Dan Talayco | 2baf8b5 | 2012-03-30 09:55:42 -0700 | [diff] [blame] | 996 | for i in xrange(0, len(src), length): |
| 997 | chars = src[i:i+length] |
| 998 | hex = ' '.join(["%02x" % ord(x) for x in chars]) |
| 999 | printable = ''.join(["%s" % ((ord(x) <= 127 and |
| 1000 | FILTER[ord(x)]) or '.') for x in chars]) |
| 1001 | result.append("%04x %-*s %s\n" % (i, length*3, hex, printable)) |
| 1002 | return ''.join(result) |
| 1003 | |
| 1004 | def format_packet(pkt): |
| 1005 | return "Packet length %d \n%s" % (len(str(pkt)), |
| 1006 | hex_dump_buffer(str(pkt))) |
Rich Lane | 5d7e89a | 2012-10-26 16:43:13 -0700 | [diff] [blame] | 1007 | |
| 1008 | def inspect_packet(pkt): |
| 1009 | """ |
| 1010 | Wrapper around scapy's show() method. |
| 1011 | @returns A string showing the dissected packet. |
| 1012 | """ |
| 1013 | from cStringIO import StringIO |
| 1014 | out = None |
| 1015 | backup = sys.stdout |
| 1016 | try: |
| 1017 | sys.stdout = StringIO() |
| 1018 | pkt.show2() |
| 1019 | out = sys.stdout.getvalue() |
| 1020 | sys.stdout.close() |
| 1021 | finally: |
| 1022 | sys.stdout = backup |
| 1023 | return out |
Rich Lane | 0a4f637 | 2013-01-02 14:40:22 -0800 | [diff] [blame] | 1024 | |
| 1025 | def nonstandard(cls): |
| 1026 | """ |
Rich Lane | cc45b8e | 2013-01-02 15:55:02 -0800 | [diff] [blame] | 1027 | Testcase decorator that marks the test as being non-standard. |
| 1028 | These tests are not automatically added to the "standard" group. |
Rich Lane | 0a4f637 | 2013-01-02 14:40:22 -0800 | [diff] [blame] | 1029 | """ |
Rich Lane | cc45b8e | 2013-01-02 15:55:02 -0800 | [diff] [blame] | 1030 | cls._nonstandard = True |
Rich Lane | 0a4f637 | 2013-01-02 14:40:22 -0800 | [diff] [blame] | 1031 | return cls |
| 1032 | |
| 1033 | def disabled(cls): |
| 1034 | """ |
Rich Lane | cc45b8e | 2013-01-02 15:55:02 -0800 | [diff] [blame] | 1035 | Testcase decorator that marks the test as being disabled. |
| 1036 | These tests are not automatically added to the "standard" group or |
| 1037 | their module's group. |
Rich Lane | 0a4f637 | 2013-01-02 14:40:22 -0800 | [diff] [blame] | 1038 | """ |
Rich Lane | cc45b8e | 2013-01-02 15:55:02 -0800 | [diff] [blame] | 1039 | cls._disabled = True |
Rich Lane | 0a4f637 | 2013-01-02 14:40:22 -0800 | [diff] [blame] | 1040 | return cls |
Rich Lane | 97e9965 | 2013-01-02 17:23:20 -0800 | [diff] [blame] | 1041 | |
| 1042 | def group(name): |
| 1043 | """ |
| 1044 | Testcase decorator that adds the test to a group. |
| 1045 | """ |
| 1046 | def fn(cls): |
| 1047 | if not hasattr(cls, "_groups"): |
| 1048 | cls._groups = [] |
| 1049 | cls._groups.append(name) |
| 1050 | return cls |
| 1051 | return fn |