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 |
Rich Lane | 5a9a192 | 2013-01-11 14:29:30 -0800 | [diff] [blame] | 6 | import re |
Rich Lane | a68176f | 2013-08-09 17:41:05 -0700 | [diff] [blame] | 7 | import packet as scapy |
Dan Talayco | 41eae8b | 2010-03-10 13:57:06 -0800 | [diff] [blame] | 8 | |
Rich Lane | cd97d3d | 2013-01-07 18:50:06 -0800 | [diff] [blame] | 9 | import oftest |
| 10 | import oftest.controller |
| 11 | import oftest.dataplane |
Rich Lane | f688351 | 2013-03-11 17:00:09 -0700 | [diff] [blame] | 12 | import oftest.parse |
Rich Lane | 4c504f3 | 2013-06-07 17:24:14 -0700 | [diff] [blame] | 13 | import oftest.ofutils |
Rich Lane | e717c6e | 2013-03-12 10:25:50 -0700 | [diff] [blame] | 14 | import ofp |
Dan Talayco | c901f4d | 2010-03-07 21:55:45 -0800 | [diff] [blame] | 15 | |
Dan Talayco | ba3745c | 2010-07-21 21:51:08 -0700 | [diff] [blame] | 16 | global skipped_test_count |
| 17 | skipped_test_count = 0 |
| 18 | |
Rich Lane | 7744e11 | 2013-01-11 17:23:57 -0800 | [diff] [blame] | 19 | _import_blacklist = set(locals().keys()) |
| 20 | |
Dan Talayco | 551befa | 2010-07-15 17:05:32 -0700 | [diff] [blame] | 21 | # Some useful defines |
| 22 | IP_ETHERTYPE = 0x800 |
| 23 | TCP_PROTOCOL = 0x6 |
| 24 | UDP_PROTOCOL = 0x11 |
| 25 | |
Jeffrey Townsend | 5cb7ed3 | 2012-08-17 18:11:01 +0000 | [diff] [blame] | 26 | MINSIZE = 0 |
| 27 | |
Tony van der Peet | 80c5b20 | 2013-11-20 11:47:48 +1300 | [diff] [blame] | 28 | def delete_all_flows(ctrl, send_barrier=True): |
Dan Talayco | 41eae8b | 2010-03-10 13:57:06 -0800 | [diff] [blame] | 29 | """ |
| 30 | Delete all flows on the switch |
| 31 | @param ctrl The controller object for the test |
Tony van der Peet | 80c5b20 | 2013-11-20 11:47:48 +1300 | [diff] [blame] | 32 | @param send_barrier Whether or not to send a barrier message |
Dan Talayco | 41eae8b | 2010-03-10 13:57:06 -0800 | [diff] [blame] | 33 | """ |
| 34 | |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 35 | logging.info("Deleting all flows") |
Rich Lane | e717c6e | 2013-03-12 10:25:50 -0700 | [diff] [blame] | 36 | msg = ofp.message.flow_delete() |
Rich Lane | c717f44 | 2013-06-13 15:49:09 -0700 | [diff] [blame] | 37 | if ofp.OFP_VERSION in [1, 2]: |
| 38 | msg.match.wildcards = ofp.OFPFW_ALL |
| 39 | msg.out_port = ofp.OFPP_NONE |
| 40 | msg.buffer_id = 0xffffffff |
| 41 | elif ofp.OFP_VERSION >= 3: |
| 42 | msg.table_id = ofp.OFPTT_ALL |
| 43 | msg.buffer_id = ofp.OFP_NO_BUFFER |
| 44 | msg.out_port = ofp.OFPP_ANY |
| 45 | msg.out_group = ofp.OFPG_ANY |
Rich Lane | 5c3151c | 2013-01-03 17:15:41 -0800 | [diff] [blame] | 46 | ctrl.message_send(msg) |
Tony van der Peet | 80c5b20 | 2013-11-20 11:47:48 +1300 | [diff] [blame] | 47 | if send_barrier: |
| 48 | do_barrier(ctrl) |
Rich Lane | 32bf948 | 2013-01-03 17:26:30 -0800 | [diff] [blame] | 49 | return 0 # for backwards compatibility |
Dan Talayco | 41eae8b | 2010-03-10 13:57:06 -0800 | [diff] [blame] | 50 | |
Rich Lane | 5f3c9b2 | 2013-10-10 17:20:30 -0700 | [diff] [blame] | 51 | def delete_all_groups(ctrl): |
| 52 | """ |
| 53 | Delete all groups on the switch |
| 54 | @param ctrl The controller object for the test |
| 55 | """ |
| 56 | |
| 57 | logging.info("Deleting all groups") |
Rich Lane | 5de5e63 | 2013-11-24 10:15:25 -0800 | [diff] [blame] | 58 | msg = ofp.message.group_delete(group_id=ofp.OFPG_ALL) |
Rich Lane | 5f3c9b2 | 2013-10-10 17:20:30 -0700 | [diff] [blame] | 59 | ctrl.message_send(msg) |
| 60 | do_barrier(ctrl) |
| 61 | |
Ed Swierk | 99a74de | 2012-08-22 06:40:54 -0700 | [diff] [blame] | 62 | def required_wildcards(parent): |
Rich Lane | 2014f9b | 2012-10-05 15:29:40 -0700 | [diff] [blame] | 63 | w = test_param_get('required_wildcards', default='default') |
Ed Swierk | 99a74de | 2012-08-22 06:40:54 -0700 | [diff] [blame] | 64 | if w == 'l3-l4': |
Rich Lane | e717c6e | 2013-03-12 10:25:50 -0700 | [diff] [blame] | 65 | return (ofp.OFPFW_NW_SRC_ALL | ofp.OFPFW_NW_DST_ALL | ofp.OFPFW_NW_TOS |
| 66 | | ofp.OFPFW_NW_PROTO | ofp.OFPFW_TP_SRC | ofp.OFPFW_TP_DST) |
Ed Swierk | 99a74de | 2012-08-22 06:40:54 -0700 | [diff] [blame] | 67 | else: |
| 68 | return 0 |
| 69 | |
Dan Talayco | 41eae8b | 2010-03-10 13:57:06 -0800 | [diff] [blame] | 70 | def simple_tcp_packet(pktlen=100, |
Rich Lane | d0478ff | 2013-03-11 12:46:58 -0700 | [diff] [blame] | 71 | eth_dst='00:01:02:03:04:05', |
| 72 | eth_src='00:06:07:08:09:0a', |
Tatsuya Yabe | 460321e | 2010-05-25 17:50:49 -0700 | [diff] [blame] | 73 | dl_vlan_enable=False, |
Rich Lane | d0478ff | 2013-03-11 12:46:58 -0700 | [diff] [blame] | 74 | vlan_vid=0, |
| 75 | vlan_pcp=0, |
Dan Talayco | 551befa | 2010-07-15 17:05:32 -0700 | [diff] [blame] | 76 | dl_vlan_cfi=0, |
Dan Talayco | 41eae8b | 2010-03-10 13:57:06 -0800 | [diff] [blame] | 77 | ip_src='192.168.0.1', |
| 78 | ip_dst='192.168.0.2', |
Tatsuya Yabe | 460321e | 2010-05-25 17:50:49 -0700 | [diff] [blame] | 79 | ip_tos=0, |
Gregor Maier | 9cc9334 | 2013-01-29 16:55:28 -0800 | [diff] [blame] | 80 | ip_ttl=64, |
Dan Talayco | 41eae8b | 2010-03-10 13:57:06 -0800 | [diff] [blame] | 81 | tcp_sport=1234, |
Christian Dickmann | 8b59b4b | 2012-09-23 16:48:30 -0700 | [diff] [blame] | 82 | tcp_dport=80, |
| 83 | ip_ihl=None, |
| 84 | ip_options=False |
Dan Talayco | 41eae8b | 2010-03-10 13:57:06 -0800 | [diff] [blame] | 85 | ): |
| 86 | """ |
| 87 | Return a simple dataplane TCP packet |
| 88 | |
| 89 | Supports a few parameters: |
| 90 | @param len Length of packet in bytes w/o CRC |
Rich Lane | d0478ff | 2013-03-11 12:46:58 -0700 | [diff] [blame] | 91 | @param eth_dst Destinatino MAC |
| 92 | @param eth_src Source MAC |
Tatsuya Yabe | 460321e | 2010-05-25 17:50:49 -0700 | [diff] [blame] | 93 | @param dl_vlan_enable True if the packet is with vlan, False otherwise |
Rich Lane | d0478ff | 2013-03-11 12:46:58 -0700 | [diff] [blame] | 94 | @param vlan_vid VLAN ID |
| 95 | @param vlan_pcp VLAN priority |
Dan Talayco | 41eae8b | 2010-03-10 13:57:06 -0800 | [diff] [blame] | 96 | @param ip_src IP source |
| 97 | @param ip_dst IP destination |
Tatsuya Yabe | 460321e | 2010-05-25 17:50:49 -0700 | [diff] [blame] | 98 | @param ip_tos IP ToS |
Gregor Maier | 9cc9334 | 2013-01-29 16:55:28 -0800 | [diff] [blame] | 99 | @param ip_ttl IP TTL |
Dan Talayco | 41eae8b | 2010-03-10 13:57:06 -0800 | [diff] [blame] | 100 | @param tcp_dport TCP destination port |
| 101 | @param ip_sport TCP source port |
| 102 | |
| 103 | Generates a simple TCP request. Users |
| 104 | shouldn't assume anything about this packet other than that |
| 105 | it is a valid ethernet/IP/TCP frame. |
| 106 | """ |
Jeffrey Townsend | 5cb7ed3 | 2012-08-17 18:11:01 +0000 | [diff] [blame] | 107 | |
| 108 | if MINSIZE > pktlen: |
| 109 | pktlen = MINSIZE |
| 110 | |
Dan Talayco | 551befa | 2010-07-15 17:05:32 -0700 | [diff] [blame] | 111 | # Note Dot1Q.id is really CFI |
Shudong Zhou | 43ee54c | 2012-12-13 15:52:37 -0800 | [diff] [blame] | 112 | if (dl_vlan_enable): |
Rich Lane | d0478ff | 2013-03-11 12:46:58 -0700 | [diff] [blame] | 113 | pkt = scapy.Ether(dst=eth_dst, src=eth_src)/ \ |
| 114 | scapy.Dot1Q(prio=vlan_pcp, id=dl_vlan_cfi, vlan=vlan_vid)/ \ |
Gregor Maier | 9cc9334 | 2013-01-29 16:55:28 -0800 | [diff] [blame] | 115 | scapy.IP(src=ip_src, dst=ip_dst, tos=ip_tos, ttl=ip_ttl, ihl=ip_ihl)/ \ |
Tatsuya Yabe | 460321e | 2010-05-25 17:50:49 -0700 | [diff] [blame] | 116 | scapy.TCP(sport=tcp_sport, dport=tcp_dport) |
| 117 | else: |
Christian Dickmann | 8b59b4b | 2012-09-23 16:48:30 -0700 | [diff] [blame] | 118 | if not ip_options: |
Rich Lane | d0478ff | 2013-03-11 12:46:58 -0700 | [diff] [blame] | 119 | pkt = scapy.Ether(dst=eth_dst, src=eth_src)/ \ |
Gregor Maier | 9cc9334 | 2013-01-29 16:55:28 -0800 | [diff] [blame] | 120 | scapy.IP(src=ip_src, dst=ip_dst, tos=ip_tos, ttl=ip_ttl, ihl=ip_ihl)/ \ |
Christian Dickmann | 8b59b4b | 2012-09-23 16:48:30 -0700 | [diff] [blame] | 121 | scapy.TCP(sport=tcp_sport, dport=tcp_dport) |
| 122 | else: |
Rich Lane | d0478ff | 2013-03-11 12:46:58 -0700 | [diff] [blame] | 123 | pkt = scapy.Ether(dst=eth_dst, src=eth_src)/ \ |
Gregor Maier | 9cc9334 | 2013-01-29 16:55:28 -0800 | [diff] [blame] | 124 | scapy.IP(src=ip_src, dst=ip_dst, tos=ip_tos, ttl=ip_ttl, ihl=ip_ihl, options=ip_options)/ \ |
Christian Dickmann | 8b59b4b | 2012-09-23 16:48:30 -0700 | [diff] [blame] | 125 | scapy.TCP(sport=tcp_sport, dport=tcp_dport) |
Tatsuya Yabe | 460321e | 2010-05-25 17:50:49 -0700 | [diff] [blame] | 126 | |
Dan Talayco | 41eae8b | 2010-03-10 13:57:06 -0800 | [diff] [blame] | 127 | pkt = pkt/("D" * (pktlen - len(pkt))) |
| 128 | |
| 129 | return pkt |
| 130 | |
Rich Lane | 86aceb0 | 2013-07-17 18:45:38 -0700 | [diff] [blame] | 131 | def simple_tcpv6_packet(pktlen=100, |
| 132 | eth_dst='00:01:02:03:04:05', |
| 133 | eth_src='00:06:07:08:09:0a', |
| 134 | dl_vlan_enable=False, |
| 135 | vlan_vid=0, |
| 136 | vlan_pcp=0, |
| 137 | ipv6_src='2001:db8:85a3::8a2e:370:7334', |
| 138 | ipv6_dst='2001:db8:85a3::8a2e:370:7335', |
| 139 | ipv6_tc=0, |
| 140 | ipv6_hlim=64, |
| 141 | ipv6_fl=0, |
| 142 | tcp_sport=1234, |
| 143 | tcp_dport=80): |
| 144 | """ |
| 145 | Return a simple IPv6/TCP packet |
| 146 | |
| 147 | Supports a few parameters: |
| 148 | @param len Length of packet in bytes w/o CRC |
| 149 | @param eth_dst Destination MAC |
| 150 | @param eth_src Source MAC |
| 151 | @param dl_vlan_enable True if the packet is with vlan, False otherwise |
| 152 | @param vlan_vid VLAN ID |
| 153 | @param vlan_pcp VLAN priority |
| 154 | @param ipv6_src IPv6 source |
| 155 | @param ipv6_dst IPv6 destination |
| 156 | @param ipv6_tc IPv6 traffic class |
| 157 | @param ipv6_ttl IPv6 hop limit |
| 158 | @param ipv6_fl IPv6 flow label |
| 159 | @param tcp_dport TCP destination port |
| 160 | @param tcp_sport TCP source port |
| 161 | |
| 162 | Generates a simple TCP request. Users shouldn't assume anything about this |
| 163 | packet other than that it is a valid ethernet/IPv6/TCP frame. |
| 164 | """ |
| 165 | |
| 166 | if MINSIZE > pktlen: |
| 167 | pktlen = MINSIZE |
| 168 | |
| 169 | pkt = scapy.Ether(dst=eth_dst, src=eth_src) |
| 170 | if dl_vlan_enable or vlan_vid or vlan_pcp: |
| 171 | pkt /= scapy.Dot1Q(vlan=vlan_vid, prio=vlan_pcp) |
| 172 | pkt /= scapy.IPv6(src=ipv6_src, dst=ipv6_dst, fl=ipv6_fl, tc=ipv6_tc, hlim=ipv6_hlim) |
| 173 | pkt /= scapy.TCP(sport=tcp_sport, dport=tcp_dport) |
| 174 | pkt /= ("D" * (pktlen - len(pkt))) |
| 175 | |
| 176 | return pkt |
| 177 | |
Rich Lane | 6ee7bea | 2012-10-26 16:19:29 -0700 | [diff] [blame] | 178 | def simple_udp_packet(pktlen=100, |
Rich Lane | d0478ff | 2013-03-11 12:46:58 -0700 | [diff] [blame] | 179 | eth_dst='00:01:02:03:04:05', |
| 180 | eth_src='00:06:07:08:09:0a', |
Rich Lane | 6ee7bea | 2012-10-26 16:19:29 -0700 | [diff] [blame] | 181 | dl_vlan_enable=False, |
Rich Lane | d0478ff | 2013-03-11 12:46:58 -0700 | [diff] [blame] | 182 | vlan_vid=0, |
| 183 | vlan_pcp=0, |
Rich Lane | 6ee7bea | 2012-10-26 16:19:29 -0700 | [diff] [blame] | 184 | dl_vlan_cfi=0, |
| 185 | ip_src='192.168.0.1', |
| 186 | ip_dst='192.168.0.2', |
| 187 | ip_tos=0, |
Gregor Maier | 9cc9334 | 2013-01-29 16:55:28 -0800 | [diff] [blame] | 188 | ip_ttl=64, |
Rich Lane | 6ee7bea | 2012-10-26 16:19:29 -0700 | [diff] [blame] | 189 | udp_sport=1234, |
| 190 | udp_dport=80, |
| 191 | ip_ihl=None, |
| 192 | ip_options=False |
| 193 | ): |
| 194 | """ |
| 195 | Return a simple dataplane UDP packet |
| 196 | |
| 197 | Supports a few parameters: |
| 198 | @param len Length of packet in bytes w/o CRC |
Rich Lane | d0478ff | 2013-03-11 12:46:58 -0700 | [diff] [blame] | 199 | @param eth_dst Destination MAC |
| 200 | @param eth_src Source MAC |
Rich Lane | 6ee7bea | 2012-10-26 16:19:29 -0700 | [diff] [blame] | 201 | @param dl_vlan_enable True if the packet is with vlan, False otherwise |
Rich Lane | d0478ff | 2013-03-11 12:46:58 -0700 | [diff] [blame] | 202 | @param vlan_vid VLAN ID |
| 203 | @param vlan_pcp VLAN priority |
Rich Lane | 6ee7bea | 2012-10-26 16:19:29 -0700 | [diff] [blame] | 204 | @param ip_src IP source |
| 205 | @param ip_dst IP destination |
| 206 | @param ip_tos IP ToS |
Gregor Maier | 9cc9334 | 2013-01-29 16:55:28 -0800 | [diff] [blame] | 207 | @param ip_ttl IP TTL |
Rich Lane | 6ee7bea | 2012-10-26 16:19:29 -0700 | [diff] [blame] | 208 | @param udp_dport UDP destination port |
| 209 | @param udp_sport UDP source port |
| 210 | |
| 211 | Generates a simple UDP packet. Users shouldn't assume anything about |
| 212 | this packet other than that it is a valid ethernet/IP/UDP frame. |
| 213 | """ |
| 214 | |
| 215 | if MINSIZE > pktlen: |
| 216 | pktlen = MINSIZE |
| 217 | |
| 218 | # Note Dot1Q.id is really CFI |
| 219 | if (dl_vlan_enable): |
Rich Lane | d0478ff | 2013-03-11 12:46:58 -0700 | [diff] [blame] | 220 | pkt = scapy.Ether(dst=eth_dst, src=eth_src)/ \ |
| 221 | scapy.Dot1Q(prio=vlan_pcp, id=dl_vlan_cfi, vlan=vlan_vid)/ \ |
Gregor Maier | 9cc9334 | 2013-01-29 16:55:28 -0800 | [diff] [blame] | 222 | scapy.IP(src=ip_src, dst=ip_dst, tos=ip_tos, ttl=ip_ttl, ihl=ip_ihl)/ \ |
Rich Lane | 6ee7bea | 2012-10-26 16:19:29 -0700 | [diff] [blame] | 223 | scapy.UDP(sport=udp_sport, dport=udp_dport) |
| 224 | else: |
| 225 | if not ip_options: |
Rich Lane | d0478ff | 2013-03-11 12:46:58 -0700 | [diff] [blame] | 226 | pkt = scapy.Ether(dst=eth_dst, src=eth_src)/ \ |
Gregor Maier | 9cc9334 | 2013-01-29 16:55:28 -0800 | [diff] [blame] | 227 | scapy.IP(src=ip_src, dst=ip_dst, tos=ip_tos, ttl=ip_ttl, ihl=ip_ihl)/ \ |
Rich Lane | 6ee7bea | 2012-10-26 16:19:29 -0700 | [diff] [blame] | 228 | scapy.UDP(sport=udp_sport, dport=udp_dport) |
| 229 | else: |
Rich Lane | d0478ff | 2013-03-11 12:46:58 -0700 | [diff] [blame] | 230 | pkt = scapy.Ether(dst=eth_dst, src=eth_src)/ \ |
Gregor Maier | 9cc9334 | 2013-01-29 16:55:28 -0800 | [diff] [blame] | 231 | scapy.IP(src=ip_src, dst=ip_dst, tos=ip_tos, ttl=ip_ttl, ihl=ip_ihl, options=ip_options)/ \ |
Rich Lane | 6ee7bea | 2012-10-26 16:19:29 -0700 | [diff] [blame] | 232 | scapy.UDP(sport=udp_sport, dport=udp_dport) |
| 233 | |
| 234 | pkt = pkt/("D" * (pktlen - len(pkt))) |
| 235 | |
| 236 | return pkt |
| 237 | |
Rich Lane | 86aceb0 | 2013-07-17 18:45:38 -0700 | [diff] [blame] | 238 | def simple_udpv6_packet(pktlen=100, |
| 239 | eth_dst='00:01:02:03:04:05', |
| 240 | eth_src='00:06:07:08:09:0a', |
| 241 | dl_vlan_enable=False, |
| 242 | vlan_vid=0, |
| 243 | vlan_pcp=0, |
| 244 | ipv6_src='2001:db8:85a3::8a2e:370:7334', |
| 245 | ipv6_dst='2001:db8:85a3::8a2e:370:7335', |
| 246 | ipv6_tc=0, |
| 247 | ipv6_hlim=64, |
| 248 | ipv6_fl=0, |
| 249 | udp_sport=1234, |
| 250 | udp_dport=80): |
| 251 | """ |
| 252 | Return a simple IPv6/UDP packet |
| 253 | |
| 254 | Supports a few parameters: |
| 255 | @param len Length of packet in bytes w/o CRC |
| 256 | @param eth_dst Destination MAC |
| 257 | @param eth_src Source MAC |
| 258 | @param dl_vlan_enable True if the packet is with vlan, False otherwise |
| 259 | @param vlan_vid VLAN ID |
| 260 | @param vlan_pcp VLAN priority |
| 261 | @param ipv6_src IPv6 source |
| 262 | @param ipv6_dst IPv6 destination |
| 263 | @param ipv6_tc IPv6 traffic class |
| 264 | @param ipv6_ttl IPv6 hop limit |
| 265 | @param ipv6_fl IPv6 flow label |
| 266 | @param udp_dport UDP destination port |
| 267 | @param udp_sport UDP source port |
| 268 | |
| 269 | Generates a simple UDP request. Users shouldn't assume anything about this |
| 270 | packet other than that it is a valid ethernet/IPv6/UDP frame. |
| 271 | """ |
| 272 | |
| 273 | if MINSIZE > pktlen: |
| 274 | pktlen = MINSIZE |
| 275 | |
| 276 | pkt = scapy.Ether(dst=eth_dst, src=eth_src) |
| 277 | if dl_vlan_enable or vlan_vid or vlan_pcp: |
| 278 | pkt /= scapy.Dot1Q(vlan=vlan_vid, prio=vlan_pcp) |
| 279 | pkt /= scapy.IPv6(src=ipv6_src, dst=ipv6_dst, fl=ipv6_fl, tc=ipv6_tc, hlim=ipv6_hlim) |
| 280 | pkt /= scapy.UDP(sport=udp_sport, dport=udp_dport) |
| 281 | pkt /= ("D" * (pktlen - len(pkt))) |
| 282 | |
| 283 | return pkt |
| 284 | |
Tatsuya Yabe | b8fb3c3 | 2010-06-14 15:48:36 -0700 | [diff] [blame] | 285 | def simple_icmp_packet(pktlen=60, |
Rich Lane | d0478ff | 2013-03-11 12:46:58 -0700 | [diff] [blame] | 286 | eth_dst='00:01:02:03:04:05', |
| 287 | eth_src='00:06:07:08:09:0a', |
Tatsuya Yabe | b8fb3c3 | 2010-06-14 15:48:36 -0700 | [diff] [blame] | 288 | dl_vlan_enable=False, |
Rich Lane | d0478ff | 2013-03-11 12:46:58 -0700 | [diff] [blame] | 289 | vlan_vid=0, |
| 290 | vlan_pcp=0, |
Tatsuya Yabe | b8fb3c3 | 2010-06-14 15:48:36 -0700 | [diff] [blame] | 291 | ip_src='192.168.0.1', |
| 292 | ip_dst='192.168.0.2', |
| 293 | ip_tos=0, |
Gregor Maier | 9cc9334 | 2013-01-29 16:55:28 -0800 | [diff] [blame] | 294 | ip_ttl=64, |
Harshmeet Singh | d209c0b | 2014-01-28 09:48:58 -0600 | [diff] [blame] | 295 | ip_id=1, |
Tatsuya Yabe | b8fb3c3 | 2010-06-14 15:48:36 -0700 | [diff] [blame] | 296 | icmp_type=8, |
Harshmeet Singh | d209c0b | 2014-01-28 09:48:58 -0600 | [diff] [blame] | 297 | icmp_code=0, |
Harshmeet Singh | 45b2a9d | 2014-01-28 13:02:04 -0600 | [diff] [blame] | 298 | icmp_data=''): |
Tatsuya Yabe | b8fb3c3 | 2010-06-14 15:48:36 -0700 | [diff] [blame] | 299 | """ |
| 300 | Return a simple ICMP packet |
| 301 | |
| 302 | Supports a few parameters: |
| 303 | @param len Length of packet in bytes w/o CRC |
Rich Lane | d0478ff | 2013-03-11 12:46:58 -0700 | [diff] [blame] | 304 | @param eth_dst Destinatino MAC |
| 305 | @param eth_src Source MAC |
Tatsuya Yabe | b8fb3c3 | 2010-06-14 15:48:36 -0700 | [diff] [blame] | 306 | @param dl_vlan_enable True if the packet is with vlan, False otherwise |
Rich Lane | d0478ff | 2013-03-11 12:46:58 -0700 | [diff] [blame] | 307 | @param vlan_vid VLAN ID |
| 308 | @param vlan_pcp VLAN priority |
Tatsuya Yabe | b8fb3c3 | 2010-06-14 15:48:36 -0700 | [diff] [blame] | 309 | @param ip_src IP source |
| 310 | @param ip_dst IP destination |
| 311 | @param ip_tos IP ToS |
Gregor Maier | 9cc9334 | 2013-01-29 16:55:28 -0800 | [diff] [blame] | 312 | @param ip_ttl IP TTL |
Harshmeet Singh | d209c0b | 2014-01-28 09:48:58 -0600 | [diff] [blame] | 313 | @param ip_id IP Identification |
Tatsuya Yabe | b8fb3c3 | 2010-06-14 15:48:36 -0700 | [diff] [blame] | 314 | @param icmp_type ICMP type |
| 315 | @param icmp_code ICMP code |
Harshmeet Singh | d209c0b | 2014-01-28 09:48:58 -0600 | [diff] [blame] | 316 | @param icmp_data ICMP data |
Tatsuya Yabe | b8fb3c3 | 2010-06-14 15:48:36 -0700 | [diff] [blame] | 317 | |
| 318 | Generates a simple ICMP ECHO REQUEST. Users |
| 319 | shouldn't assume anything about this packet other than that |
| 320 | it is a valid ethernet/ICMP frame. |
| 321 | """ |
Jeffrey Townsend | 5cb7ed3 | 2012-08-17 18:11:01 +0000 | [diff] [blame] | 322 | |
| 323 | if MINSIZE > pktlen: |
| 324 | pktlen = MINSIZE |
| 325 | |
Tatsuya Yabe | b8fb3c3 | 2010-06-14 15:48:36 -0700 | [diff] [blame] | 326 | if (dl_vlan_enable): |
Rich Lane | d0478ff | 2013-03-11 12:46:58 -0700 | [diff] [blame] | 327 | pkt = scapy.Ether(dst=eth_dst, src=eth_src)/ \ |
| 328 | scapy.Dot1Q(prio=vlan_pcp, id=0, vlan=vlan_vid)/ \ |
Harshmeet Singh | d209c0b | 2014-01-28 09:48:58 -0600 | [diff] [blame] | 329 | scapy.IP(src=ip_src, dst=ip_dst, ttl=ip_ttl, tos=ip_tos, id=ip_id)/ \ |
Harshmeet Singh | 45b2a9d | 2014-01-28 13:02:04 -0600 | [diff] [blame] | 330 | scapy.ICMP(type=icmp_type, code=icmp_code)/ icmp_data |
Tatsuya Yabe | b8fb3c3 | 2010-06-14 15:48:36 -0700 | [diff] [blame] | 331 | else: |
Rich Lane | d0478ff | 2013-03-11 12:46:58 -0700 | [diff] [blame] | 332 | pkt = scapy.Ether(dst=eth_dst, src=eth_src)/ \ |
Harshmeet Singh | d209c0b | 2014-01-28 09:48:58 -0600 | [diff] [blame] | 333 | scapy.IP(src=ip_src, dst=ip_dst, ttl=ip_ttl, tos=ip_tos, id=ip_id)/ \ |
Harshmeet Singh | 45b2a9d | 2014-01-28 13:02:04 -0600 | [diff] [blame] | 334 | scapy.ICMP(type=icmp_type, code=icmp_code)/ icmp_data |
Tatsuya Yabe | b8fb3c3 | 2010-06-14 15:48:36 -0700 | [diff] [blame] | 335 | |
| 336 | pkt = pkt/("0" * (pktlen - len(pkt))) |
| 337 | |
| 338 | return pkt |
| 339 | |
Rich Lane | 86aceb0 | 2013-07-17 18:45:38 -0700 | [diff] [blame] | 340 | def simple_icmpv6_packet(pktlen=100, |
| 341 | eth_dst='00:01:02:03:04:05', |
| 342 | eth_src='00:06:07:08:09:0a', |
| 343 | dl_vlan_enable=False, |
| 344 | vlan_vid=0, |
| 345 | vlan_pcp=0, |
| 346 | ipv6_src='2001:db8:85a3::8a2e:370:7334', |
| 347 | ipv6_dst='2001:db8:85a3::8a2e:370:7335', |
| 348 | ipv6_tc=0, |
| 349 | ipv6_hlim=64, |
| 350 | ipv6_fl=0, |
| 351 | icmp_type=8, |
| 352 | icmp_code=0): |
| 353 | """ |
| 354 | Return a simple ICMPv6 packet |
| 355 | |
| 356 | Supports a few parameters: |
| 357 | @param len Length of packet in bytes w/o CRC |
| 358 | @param eth_dst Destination MAC |
| 359 | @param eth_src Source MAC |
| 360 | @param dl_vlan_enable True if the packet is with vlan, False otherwise |
| 361 | @param vlan_vid VLAN ID |
| 362 | @param vlan_pcp VLAN priority |
| 363 | @param ipv6_src IPv6 source |
| 364 | @param ipv6_dst IPv6 destination |
| 365 | @param ipv6_tc IPv6 traffic class |
| 366 | @param ipv6_ttl IPv6 hop limit |
| 367 | @param ipv6_fl IPv6 flow label |
| 368 | @param icmp_type ICMP type |
| 369 | @param icmp_code ICMP code |
| 370 | |
| 371 | Generates a simple ICMP ECHO REQUEST. Users shouldn't assume anything |
| 372 | about this packet other than that it is a valid ethernet/IPv6/ICMP frame. |
| 373 | """ |
| 374 | |
| 375 | if MINSIZE > pktlen: |
| 376 | pktlen = MINSIZE |
| 377 | |
| 378 | pkt = scapy.Ether(dst=eth_dst, src=eth_src) |
| 379 | if dl_vlan_enable or vlan_vid or vlan_pcp: |
| 380 | pkt /= scapy.Dot1Q(vlan=vlan_vid, prio=vlan_pcp) |
| 381 | pkt /= scapy.IPv6(src=ipv6_src, dst=ipv6_dst, fl=ipv6_fl, tc=ipv6_tc, hlim=ipv6_hlim) |
| 382 | pkt /= scapy.ICMPv6Unknown(type=icmp_type, code=icmp_code) |
| 383 | pkt /= ("D" * (pktlen - len(pkt))) |
| 384 | |
| 385 | return pkt |
| 386 | |
Shudong Zhou | c7562b1 | 2013-02-06 01:12:18 -0800 | [diff] [blame] | 387 | def simple_arp_packet(pktlen=60, |
Rich Lane | d0478ff | 2013-03-11 12:46:58 -0700 | [diff] [blame] | 388 | eth_dst='ff:ff:ff:ff:ff:ff', |
| 389 | eth_src='00:06:07:08:09:0a', |
Rich Lane | e01611f | 2014-01-15 14:55:11 -0800 | [diff] [blame] | 390 | vlan_vid=0, |
| 391 | vlan_pcp=0, |
Shudong Zhou | c7562b1 | 2013-02-06 01:12:18 -0800 | [diff] [blame] | 392 | arp_op=1, |
| 393 | ip_snd='192.168.0.1', |
| 394 | ip_tgt='192.168.0.2', |
| 395 | hw_snd='00:06:07:08:09:0a', |
| 396 | hw_tgt='00:00:00:00:00:00', |
| 397 | ): |
| 398 | """ |
| 399 | Return a simple ARP packet |
| 400 | |
| 401 | Supports a few parameters: |
| 402 | @param len Length of packet in bytes w/o CRC |
Rich Lane | d0478ff | 2013-03-11 12:46:58 -0700 | [diff] [blame] | 403 | @param eth_dst Destinatino MAC |
| 404 | @param eth_src Source MAC |
Shudong Zhou | c7562b1 | 2013-02-06 01:12:18 -0800 | [diff] [blame] | 405 | @param arp_op Operation (1=request, 2=reply) |
| 406 | @param ip_snd Sender IP |
| 407 | @param ip_tgt Target IP |
| 408 | @param hw_snd Sender hardware address |
| 409 | @param hw_tgt Target hardware address |
| 410 | |
| 411 | Generates a simple ARP REQUEST. Users |
| 412 | shouldn't assume anything about this packet other than that |
| 413 | it is a valid ethernet/ARP frame. |
| 414 | """ |
| 415 | |
| 416 | if MINSIZE > pktlen: |
| 417 | pktlen = MINSIZE |
| 418 | |
Rich Lane | e01611f | 2014-01-15 14:55:11 -0800 | [diff] [blame] | 419 | pkt = scapy.Ether(dst=eth_dst, src=eth_src) |
| 420 | if vlan_vid or vlan_pcp: |
| 421 | pkt /= scapy.Dot1Q(vlan=vlan_vid, prio=vlan_pcp) |
| 422 | pkt /= scapy.ARP(hwsrc=hw_snd, hwdst=hw_tgt, pdst=ip_tgt, psrc=ip_snd, op=arp_op) |
Shudong Zhou | c7562b1 | 2013-02-06 01:12:18 -0800 | [diff] [blame] | 423 | |
Rich Lane | d459ce5 | 2014-01-24 12:09:54 -0800 | [diff] [blame] | 424 | pkt = pkt/("\0" * (pktlen - len(pkt))) |
Shudong Zhou | c7562b1 | 2013-02-06 01:12:18 -0800 | [diff] [blame] | 425 | |
| 426 | return pkt |
| 427 | |
Ed Swierk | 0aeff8c | 2012-03-23 20:27:18 -0700 | [diff] [blame] | 428 | def simple_eth_packet(pktlen=60, |
Rich Lane | 5327508 | 2013-11-18 23:26:22 -0800 | [diff] [blame] | 429 | eth_dst='00:01:02:03:04:05', |
| 430 | eth_src='00:06:07:08:09:0a', |
Rich Lane | d0478ff | 2013-03-11 12:46:58 -0700 | [diff] [blame] | 431 | eth_type=0x88cc): |
Jeffrey Townsend | 5cb7ed3 | 2012-08-17 18:11:01 +0000 | [diff] [blame] | 432 | |
| 433 | if MINSIZE > pktlen: |
| 434 | pktlen = MINSIZE |
| 435 | |
Rich Lane | d0478ff | 2013-03-11 12:46:58 -0700 | [diff] [blame] | 436 | pkt = scapy.Ether(dst=eth_dst, src=eth_src, type=eth_type) |
Ed Swierk | 0aeff8c | 2012-03-23 20:27:18 -0700 | [diff] [blame] | 437 | |
| 438 | pkt = pkt/("0" * (pktlen - len(pkt))) |
| 439 | |
| 440 | return pkt |
| 441 | |
Shudong Zhou | 43ee54c | 2012-12-13 15:52:37 -0800 | [diff] [blame] | 442 | def qinq_tcp_packet(pktlen=100, |
Rich Lane | d0478ff | 2013-03-11 12:46:58 -0700 | [diff] [blame] | 443 | eth_dst='00:01:02:03:04:05', |
| 444 | eth_src='00:06:07:08:09:0a', |
Shudong Zhou | 43ee54c | 2012-12-13 15:52:37 -0800 | [diff] [blame] | 445 | dl_vlan_outer=20, |
| 446 | dl_vlan_pcp_outer=0, |
| 447 | dl_vlan_cfi_outer=0, |
Rich Lane | d0478ff | 2013-03-11 12:46:58 -0700 | [diff] [blame] | 448 | vlan_vid=10, |
| 449 | vlan_pcp=0, |
Shudong Zhou | 43ee54c | 2012-12-13 15:52:37 -0800 | [diff] [blame] | 450 | dl_vlan_cfi=0, |
| 451 | ip_src='192.168.0.1', |
| 452 | ip_dst='192.168.0.2', |
| 453 | ip_tos=0, |
Gregor Maier | 9cc9334 | 2013-01-29 16:55:28 -0800 | [diff] [blame] | 454 | ip_ttl=64, |
Shudong Zhou | 43ee54c | 2012-12-13 15:52:37 -0800 | [diff] [blame] | 455 | tcp_sport=1234, |
| 456 | tcp_dport=80, |
| 457 | ip_ihl=None, |
| 458 | ip_options=False |
| 459 | ): |
| 460 | """ |
| 461 | Return a doubly tagged dataplane TCP packet |
| 462 | |
| 463 | Supports a few parameters: |
| 464 | @param len Length of packet in bytes w/o CRC |
Rich Lane | d0478ff | 2013-03-11 12:46:58 -0700 | [diff] [blame] | 465 | @param eth_dst Destinatino MAC |
| 466 | @param eth_src Source MAC |
Shudong Zhou | 43ee54c | 2012-12-13 15:52:37 -0800 | [diff] [blame] | 467 | @param dl_vlan_outer Outer VLAN ID |
| 468 | @param dl_vlan_pcp_outer Outer VLAN priority |
| 469 | @param dl_vlan_cfi_outer Outer VLAN cfi bit |
Rich Lane | d0478ff | 2013-03-11 12:46:58 -0700 | [diff] [blame] | 470 | @param vlan_vid Inner VLAN ID |
| 471 | @param vlan_pcp VLAN priority |
Shudong Zhou | 43ee54c | 2012-12-13 15:52:37 -0800 | [diff] [blame] | 472 | @param dl_vlan_cfi VLAN cfi bit |
| 473 | @param ip_src IP source |
| 474 | @param ip_dst IP destination |
| 475 | @param ip_tos IP ToS |
| 476 | @param tcp_dport TCP destination port |
| 477 | @param ip_sport TCP source port |
| 478 | |
| 479 | Generates a TCP request. Users |
| 480 | shouldn't assume anything about this packet other than that |
| 481 | it is a valid ethernet/IP/TCP frame. |
| 482 | """ |
| 483 | |
| 484 | if MINSIZE > pktlen: |
| 485 | pktlen = MINSIZE |
| 486 | |
| 487 | # Note Dot1Q.id is really CFI |
Rich Lane | d0478ff | 2013-03-11 12:46:58 -0700 | [diff] [blame] | 488 | pkt = scapy.Ether(dst=eth_dst, src=eth_src)/ \ |
Shudong Zhou | 43ee54c | 2012-12-13 15:52:37 -0800 | [diff] [blame] | 489 | scapy.Dot1Q(prio=dl_vlan_pcp_outer, id=dl_vlan_cfi_outer, vlan=dl_vlan_outer)/ \ |
Rich Lane | d0478ff | 2013-03-11 12:46:58 -0700 | [diff] [blame] | 490 | scapy.Dot1Q(prio=vlan_pcp, id=dl_vlan_cfi, vlan=vlan_vid)/ \ |
Gregor Maier | 9cc9334 | 2013-01-29 16:55:28 -0800 | [diff] [blame] | 491 | scapy.IP(src=ip_src, dst=ip_dst, tos=ip_tos, ttl=ip_ttl, ihl=ip_ihl)/ \ |
Shudong Zhou | 43ee54c | 2012-12-13 15:52:37 -0800 | [diff] [blame] | 492 | scapy.TCP(sport=tcp_sport, dport=tcp_dport) |
| 493 | |
| 494 | pkt = pkt/("D" * (pktlen - len(pkt))) |
| 495 | |
| 496 | return pkt |
| 497 | |
Shudong Zhou | b7f1246 | 2012-11-20 13:01:12 -0800 | [diff] [blame] | 498 | def do_barrier(ctrl, timeout=-1): |
Dan Talayco | 0fc08bd | 2012-04-09 16:56:18 -0700 | [diff] [blame] | 499 | """ |
| 500 | Do a barrier command |
| 501 | Return 0 on success, -1 on error |
| 502 | """ |
Rich Lane | e717c6e | 2013-03-12 10:25:50 -0700 | [diff] [blame] | 503 | b = ofp.message.barrier_request() |
Shudong Zhou | b7f1246 | 2012-11-20 13:01:12 -0800 | [diff] [blame] | 504 | (resp, pkt) = ctrl.transact(b, timeout=timeout) |
Rich Lane | 3a261d5 | 2013-01-03 17:45:08 -0800 | [diff] [blame] | 505 | if resp is None: |
| 506 | raise AssertionError("barrier failed") |
Dan Talayco | f6b9483 | 2012-04-12 21:50:57 -0700 | [diff] [blame] | 507 | # We'll trust the transaction processing in the controller that xid matched |
Rich Lane | 3a261d5 | 2013-01-03 17:45:08 -0800 | [diff] [blame] | 508 | return 0 # for backwards compatibility |
Dan Talayco | 92c9912 | 2010-06-03 13:53:18 -0700 | [diff] [blame] | 509 | |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 510 | def port_config_get(controller, port_no): |
Dan Talayco | 92c9912 | 2010-06-03 13:53:18 -0700 | [diff] [blame] | 511 | """ |
| 512 | Get a port's configuration |
| 513 | |
| 514 | Gets the switch feature configuration and grabs one port's |
| 515 | configuration |
| 516 | |
| 517 | @returns (hwaddr, config, advert) The hwaddress, configuration and |
| 518 | advertised values |
| 519 | """ |
Rich Lane | 6dc865c | 2013-07-10 10:12:13 -0700 | [diff] [blame] | 520 | |
| 521 | if ofp.OFP_VERSION <= 3: |
| 522 | request = ofp.message.features_request() |
| 523 | reply, _ = controller.transact(request) |
| 524 | if reply is None: |
| 525 | logging.warn("Get feature request failed") |
| 526 | return None, None, None |
| 527 | logging.debug(reply.show()) |
| 528 | ports = reply.ports |
| 529 | else: |
| 530 | request = ofp.message.port_desc_stats_request() |
| 531 | # TODO do multipart correctly |
| 532 | reply, _ = controller.transact(request) |
| 533 | if reply is None: |
| 534 | logging.warn("Port desc stats request failed") |
| 535 | return None, None, None |
| 536 | logging.debug(reply.show()) |
| 537 | ports = reply.entries |
| 538 | |
| 539 | for port in ports: |
| 540 | if port.port_no == port_no: |
| 541 | return (port.hw_addr, port.config, port.advertised) |
Dan Talayco | 92c9912 | 2010-06-03 13:53:18 -0700 | [diff] [blame] | 542 | |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 543 | logging.warn("Did not find port number for port config") |
Dan Talayco | 92c9912 | 2010-06-03 13:53:18 -0700 | [diff] [blame] | 544 | return None, None, None |
| 545 | |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 546 | def port_config_set(controller, port_no, config, mask): |
Dan Talayco | 92c9912 | 2010-06-03 13:53:18 -0700 | [diff] [blame] | 547 | """ |
| 548 | Set the port configuration according the given parameters |
| 549 | |
| 550 | Gets the switch feature configuration and updates one port's |
| 551 | configuration value according to config and mask |
| 552 | """ |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 553 | logging.info("Setting port " + str(port_no) + " to config " + str(config)) |
Rich Lane | 6dc865c | 2013-07-10 10:12:13 -0700 | [diff] [blame] | 554 | |
| 555 | hw_addr, _, _ = port_config_get(controller, port_no) |
| 556 | |
Rich Lane | e717c6e | 2013-03-12 10:25:50 -0700 | [diff] [blame] | 557 | mod = ofp.message.port_mod() |
Dan Talayco | 92c9912 | 2010-06-03 13:53:18 -0700 | [diff] [blame] | 558 | mod.port_no = port_no |
Rich Lane | 6dc865c | 2013-07-10 10:12:13 -0700 | [diff] [blame] | 559 | if hw_addr != None: |
| 560 | mod.hw_addr = hw_addr |
Dan Talayco | 92c9912 | 2010-06-03 13:53:18 -0700 | [diff] [blame] | 561 | mod.config = config |
| 562 | mod.mask = mask |
Rich Lane | 6dc865c | 2013-07-10 10:12:13 -0700 | [diff] [blame] | 563 | mod.advertise = 0 # No change |
Rich Lane | 5c3151c | 2013-01-03 17:15:41 -0800 | [diff] [blame] | 564 | controller.message_send(mod) |
| 565 | return 0 |
Dan Talayco | 92c9912 | 2010-06-03 13:53:18 -0700 | [diff] [blame] | 566 | |
Rich Lane | 2014f9b | 2012-10-05 15:29:40 -0700 | [diff] [blame] | 567 | def receive_pkt_check(dp, pkt, yes_ports, no_ports, assert_if): |
Dan Talayco | 92c9912 | 2010-06-03 13:53:18 -0700 | [diff] [blame] | 568 | """ |
| 569 | Check for proper receive packets across all ports |
Ken Chiang | 1bf0160 | 2012-04-04 10:48:23 -0700 | [diff] [blame] | 570 | @param dp The dataplane object |
Dan Talayco | 92c9912 | 2010-06-03 13:53:18 -0700 | [diff] [blame] | 571 | @param pkt Expected packet; may be None if yes_ports is empty |
| 572 | @param yes_ports Set or list of ports that should recieve packet |
| 573 | @param no_ports Set or list of ports that should not receive packet |
| 574 | @param assert_if Object that implements assertXXX |
Rich Lane | e4b384d | 2013-09-13 14:33:40 -0700 | [diff] [blame] | 575 | |
| 576 | DEPRECATED in favor in verify_packets |
Dan Talayco | 92c9912 | 2010-06-03 13:53:18 -0700 | [diff] [blame] | 577 | """ |
Rich Lane | 9176567 | 2012-12-06 16:33:04 -0800 | [diff] [blame] | 578 | |
Dan Talayco | cf26b7a | 2011-08-05 10:15:35 -0700 | [diff] [blame] | 579 | exp_pkt_arg = None |
Rich Lane | cd97d3d | 2013-01-07 18:50:06 -0800 | [diff] [blame] | 580 | if oftest.config["relax"]: |
Dan Talayco | cf26b7a | 2011-08-05 10:15:35 -0700 | [diff] [blame] | 581 | exp_pkt_arg = pkt |
| 582 | |
Dan Talayco | 92c9912 | 2010-06-03 13:53:18 -0700 | [diff] [blame] | 583 | for ofport in yes_ports: |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 584 | logging.debug("Checking for pkt on port " + str(ofport)) |
Ken Chiang | 1bf0160 | 2012-04-04 10:48:23 -0700 | [diff] [blame] | 585 | (rcv_port, rcv_pkt, pkt_time) = dp.poll( |
Rich Lane | c8aaa3e | 2012-07-26 19:28:02 -0700 | [diff] [blame] | 586 | port_number=ofport, exp_pkt=exp_pkt_arg) |
Dan Talayco | 92c9912 | 2010-06-03 13:53:18 -0700 | [diff] [blame] | 587 | assert_if.assertTrue(rcv_pkt is not None, |
| 588 | "Did not receive pkt on " + str(ofport)) |
Rich Lane | cd97d3d | 2013-01-07 18:50:06 -0800 | [diff] [blame] | 589 | if not oftest.dataplane.match_exp_pkt(pkt, rcv_pkt): |
Rich Lane | 3c26683 | 2013-01-29 18:29:15 -0800 | [diff] [blame] | 590 | logging.debug("Expected %s" % format_packet(pkt)) |
| 591 | logging.debug("Received %s" % format_packet(rcv_pkt)) |
Rich Lane | cd97d3d | 2013-01-07 18:50:06 -0800 | [diff] [blame] | 592 | assert_if.assertTrue(oftest.dataplane.match_exp_pkt(pkt, rcv_pkt), |
Rich Lane | 3c26683 | 2013-01-29 18:29:15 -0800 | [diff] [blame] | 593 | "Received packet does not match expected packet " + |
Ken Chiang | 1bf0160 | 2012-04-04 10:48:23 -0700 | [diff] [blame] | 594 | "on port " + str(ofport)) |
Dan Talayco | 73f8401 | 2012-10-02 09:23:18 -0700 | [diff] [blame] | 595 | if len(no_ports) > 0: |
Rich Lane | 57dfee7 | 2014-03-24 16:59:47 -0700 | [diff] [blame] | 596 | time.sleep(oftest.ofutils.default_negative_timeout) |
Dan Talayco | 92c9912 | 2010-06-03 13:53:18 -0700 | [diff] [blame] | 597 | for ofport in no_ports: |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 598 | logging.debug("Negative check for pkt on port " + str(ofport)) |
Ken Chiang | 1bf0160 | 2012-04-04 10:48:23 -0700 | [diff] [blame] | 599 | (rcv_port, rcv_pkt, pkt_time) = dp.poll( |
Rich Lane | 9176567 | 2012-12-06 16:33:04 -0800 | [diff] [blame] | 600 | port_number=ofport, timeout=0, exp_pkt=exp_pkt_arg) |
Dan Talayco | 92c9912 | 2010-06-03 13:53:18 -0700 | [diff] [blame] | 601 | assert_if.assertTrue(rcv_pkt is None, |
| 602 | "Unexpected pkt on port " + str(ofport)) |
Dan Talayco | 551befa | 2010-07-15 17:05:32 -0700 | [diff] [blame] | 603 | |
| 604 | |
Dan Talayco | c948d0b | 2012-03-23 12:17:54 -0700 | [diff] [blame] | 605 | def receive_pkt_verify(parent, egr_ports, exp_pkt, ing_port): |
Dan Talayco | 551befa | 2010-07-15 17:05:32 -0700 | [diff] [blame] | 606 | """ |
| 607 | Receive a packet and verify it matches an expected value |
Dan Talayco | f6e76c0 | 2012-03-23 10:56:12 -0700 | [diff] [blame] | 608 | @param egr_port A single port or list of ports |
Dan Talayco | 551befa | 2010-07-15 17:05:32 -0700 | [diff] [blame] | 609 | |
| 610 | parent must implement dataplane, assertTrue and assertEqual |
Rich Lane | e4b384d | 2013-09-13 14:33:40 -0700 | [diff] [blame] | 611 | |
| 612 | DEPRECATED in favor in verify_packets |
Dan Talayco | 551befa | 2010-07-15 17:05:32 -0700 | [diff] [blame] | 613 | """ |
Dan Talayco | cf26b7a | 2011-08-05 10:15:35 -0700 | [diff] [blame] | 614 | exp_pkt_arg = None |
Rich Lane | cd97d3d | 2013-01-07 18:50:06 -0800 | [diff] [blame] | 615 | if oftest.config["relax"]: |
Dan Talayco | cf26b7a | 2011-08-05 10:15:35 -0700 | [diff] [blame] | 616 | exp_pkt_arg = exp_pkt |
| 617 | |
Dan Talayco | f6e76c0 | 2012-03-23 10:56:12 -0700 | [diff] [blame] | 618 | if type(egr_ports) == type([]): |
| 619 | egr_port_list = egr_ports |
| 620 | else: |
| 621 | egr_port_list = [egr_ports] |
Dan Talayco | cf26b7a | 2011-08-05 10:15:35 -0700 | [diff] [blame] | 622 | |
Dan Talayco | f6e76c0 | 2012-03-23 10:56:12 -0700 | [diff] [blame] | 623 | # Expect a packet from each port on egr port list |
| 624 | for egr_port in egr_port_list: |
Dan Talayco | d8ae758 | 2012-03-23 12:24:56 -0700 | [diff] [blame] | 625 | check_port = egr_port |
Rich Lane | e717c6e | 2013-03-12 10:25:50 -0700 | [diff] [blame] | 626 | if egr_port == ofp.OFPP_IN_PORT: |
Dan Talayco | d8ae758 | 2012-03-23 12:24:56 -0700 | [diff] [blame] | 627 | check_port = ing_port |
Dan Talayco | f6e76c0 | 2012-03-23 10:56:12 -0700 | [diff] [blame] | 628 | (rcv_port, rcv_pkt, pkt_time) = parent.dataplane.poll( |
Rich Lane | c8aaa3e | 2012-07-26 19:28:02 -0700 | [diff] [blame] | 629 | port_number=check_port, exp_pkt=exp_pkt_arg) |
Dan Talayco | 551befa | 2010-07-15 17:05:32 -0700 | [diff] [blame] | 630 | |
Dan Talayco | f6e76c0 | 2012-03-23 10:56:12 -0700 | [diff] [blame] | 631 | if rcv_pkt is None: |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 632 | logging.error("ERROR: No packet received from " + |
Dan Talayco | d8ae758 | 2012-03-23 12:24:56 -0700 | [diff] [blame] | 633 | str(check_port)) |
Dan Talayco | 551befa | 2010-07-15 17:05:32 -0700 | [diff] [blame] | 634 | |
Dan Talayco | f6e76c0 | 2012-03-23 10:56:12 -0700 | [diff] [blame] | 635 | parent.assertTrue(rcv_pkt is not None, |
Dan Talayco | d8ae758 | 2012-03-23 12:24:56 -0700 | [diff] [blame] | 636 | "Did not receive packet port " + str(check_port)) |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 637 | logging.debug("Packet len " + str(len(rcv_pkt)) + " in on " + |
Dan Talayco | f6e76c0 | 2012-03-23 10:56:12 -0700 | [diff] [blame] | 638 | str(rcv_port)) |
| 639 | |
| 640 | if str(exp_pkt) != str(rcv_pkt): |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 641 | logging.error("ERROR: Packet match failed.") |
| 642 | logging.debug("Expected len " + str(len(exp_pkt)) + ": " |
Dan Talayco | f6e76c0 | 2012-03-23 10:56:12 -0700 | [diff] [blame] | 643 | + str(exp_pkt).encode('hex')) |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 644 | logging.debug("Received len " + str(len(rcv_pkt)) + ": " |
Dan Talayco | f6e76c0 | 2012-03-23 10:56:12 -0700 | [diff] [blame] | 645 | + str(rcv_pkt).encode('hex')) |
Rich Lane | 5d7e89a | 2012-10-26 16:43:13 -0700 | [diff] [blame] | 646 | logging.debug("Expected packet: " + inspect_packet(scapy.Ether(str(exp_pkt)))) |
| 647 | logging.debug("Received packet: " + inspect_packet(scapy.Ether(str(rcv_pkt)))) |
Dan Talayco | f6e76c0 | 2012-03-23 10:56:12 -0700 | [diff] [blame] | 648 | parent.assertEqual(str(exp_pkt), str(rcv_pkt), |
Dan Talayco | d8ae758 | 2012-03-23 12:24:56 -0700 | [diff] [blame] | 649 | "Packet match error on port " + str(check_port)) |
Dan Talayco | f6e76c0 | 2012-03-23 10:56:12 -0700 | [diff] [blame] | 650 | |
Dan Talayco | 551befa | 2010-07-15 17:05:32 -0700 | [diff] [blame] | 651 | def match_verify(parent, req_match, res_match): |
| 652 | """ |
| 653 | Verify flow matches agree; if they disagree, report where |
| 654 | |
| 655 | parent must implement assertEqual |
| 656 | Use str() to ensure content is compared and not pointers |
| 657 | """ |
| 658 | |
| 659 | parent.assertEqual(req_match.wildcards, res_match.wildcards, |
| 660 | 'Match failed: wildcards: ' + hex(req_match.wildcards) + |
| 661 | " != " + hex(res_match.wildcards)) |
| 662 | parent.assertEqual(req_match.in_port, res_match.in_port, |
| 663 | 'Match failed: in_port: ' + str(req_match.in_port) + |
| 664 | " != " + str(res_match.in_port)) |
Rich Lane | d0478ff | 2013-03-11 12:46:58 -0700 | [diff] [blame] | 665 | parent.assertEqual(str(req_match.eth_src), str(res_match.eth_src), |
| 666 | 'Match failed: eth_src: ' + str(req_match.eth_src) + |
| 667 | " != " + str(res_match.eth_src)) |
| 668 | parent.assertEqual(str(req_match.eth_dst), str(res_match.eth_dst), |
| 669 | 'Match failed: eth_dst: ' + str(req_match.eth_dst) + |
| 670 | " != " + str(res_match.eth_dst)) |
| 671 | parent.assertEqual(req_match.vlan_vid, res_match.vlan_vid, |
| 672 | 'Match failed: vlan_vid: ' + str(req_match.vlan_vid) + |
| 673 | " != " + str(res_match.vlan_vid)) |
| 674 | parent.assertEqual(req_match.vlan_pcp, res_match.vlan_pcp, |
| 675 | 'Match failed: vlan_pcp: ' + |
| 676 | str(req_match.vlan_pcp) + " != " + |
| 677 | str(res_match.vlan_pcp)) |
| 678 | parent.assertEqual(req_match.eth_type, res_match.eth_type, |
| 679 | 'Match failed: eth_type: ' + str(req_match.eth_type) + |
| 680 | " != " + str(res_match.eth_type)) |
Dan Talayco | 551befa | 2010-07-15 17:05:32 -0700 | [diff] [blame] | 681 | |
Rich Lane | e717c6e | 2013-03-12 10:25:50 -0700 | [diff] [blame] | 682 | if (not(req_match.wildcards & ofp.OFPFW_DL_TYPE) |
Rich Lane | d0478ff | 2013-03-11 12:46:58 -0700 | [diff] [blame] | 683 | and (req_match.eth_type == IP_ETHERTYPE)): |
| 684 | parent.assertEqual(req_match.ip_dscp, res_match.ip_dscp, |
| 685 | 'Match failed: ip_dscp: ' + str(req_match.ip_dscp) + |
| 686 | " != " + str(res_match.ip_dscp)) |
| 687 | parent.assertEqual(req_match.ip_proto, res_match.ip_proto, |
| 688 | 'Match failed: ip_proto: ' + str(req_match.ip_proto) + |
| 689 | " != " + str(res_match.ip_proto)) |
| 690 | parent.assertEqual(req_match.ipv4_src, res_match.ipv4_src, |
| 691 | 'Match failed: ipv4_src: ' + str(req_match.ipv4_src) + |
| 692 | " != " + str(res_match.ipv4_src)) |
| 693 | parent.assertEqual(req_match.ipv4_dst, res_match.ipv4_dst, |
| 694 | 'Match failed: ipv4_dst: ' + str(req_match.ipv4_dst) + |
| 695 | " != " + str(res_match.ipv4_dst)) |
Dan Talayco | 551befa | 2010-07-15 17:05:32 -0700 | [diff] [blame] | 696 | |
Rich Lane | e717c6e | 2013-03-12 10:25:50 -0700 | [diff] [blame] | 697 | if (not(req_match.wildcards & ofp.OFPFW_NW_PROTO) |
Rich Lane | d0478ff | 2013-03-11 12:46:58 -0700 | [diff] [blame] | 698 | and ((req_match.ip_proto == TCP_PROTOCOL) |
| 699 | or (req_match.ip_proto == UDP_PROTOCOL))): |
| 700 | parent.assertEqual(req_match.tcp_src, res_match.tcp_src, |
| 701 | 'Match failed: tcp_src: ' + |
| 702 | str(req_match.tcp_src) + |
| 703 | " != " + str(res_match.tcp_src)) |
| 704 | parent.assertEqual(req_match.tcp_dst, res_match.tcp_dst, |
| 705 | 'Match failed: tcp_dst: ' + |
| 706 | str(req_match.tcp_dst) + |
| 707 | " != " + str(res_match.tcp_dst)) |
Dan Talayco | 551befa | 2010-07-15 17:05:32 -0700 | [diff] [blame] | 708 | |
Ed Swierk | 99a74de | 2012-08-22 06:40:54 -0700 | [diff] [blame] | 709 | def packet_to_flow_match(parent, packet): |
Rich Lane | f688351 | 2013-03-11 17:00:09 -0700 | [diff] [blame] | 710 | match = oftest.parse.packet_to_flow_match(packet) |
Rich Lane | ab7476f | 2013-06-13 15:53:52 -0700 | [diff] [blame] | 711 | if ofp.OFP_VERSION in [1, 2]: |
| 712 | match.wildcards |= required_wildcards(parent) |
| 713 | else: |
| 714 | # TODO remove incompatible OXM entries |
| 715 | pass |
Ed Swierk | 99a74de | 2012-08-22 06:40:54 -0700 | [diff] [blame] | 716 | return match |
| 717 | |
| 718 | 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] | 719 | egr_ports=None, egr_queue=None, check_expire=False, in_band=False): |
Dan Talayco | 551befa | 2010-07-15 17:05:32 -0700 | [diff] [blame] | 720 | """ |
| 721 | Create a flow message |
| 722 | |
| 723 | Match on packet with given wildcards. |
| 724 | See flow_match_test for other parameter descriptoins |
| 725 | @param egr_queue if not None, make the output an enqueue action |
Dan Talayco | 677c0b7 | 2011-08-23 22:53:38 -0700 | [diff] [blame] | 726 | @param in_band if True, do not wildcard ingress port |
Dan Talayco | f6e76c0 | 2012-03-23 10:56:12 -0700 | [diff] [blame] | 727 | @param egr_ports None (drop), single port or list of ports |
Dan Talayco | 551befa | 2010-07-15 17:05:32 -0700 | [diff] [blame] | 728 | """ |
Rich Lane | f688351 | 2013-03-11 17:00:09 -0700 | [diff] [blame] | 729 | match = oftest.parse.packet_to_flow_match(pkt) |
Dan Talayco | 551befa | 2010-07-15 17:05:32 -0700 | [diff] [blame] | 730 | parent.assertTrue(match is not None, "Flow match from pkt failed") |
Ed Swierk | 99a74de | 2012-08-22 06:40:54 -0700 | [diff] [blame] | 731 | if wildcards is None: |
| 732 | wildcards = required_wildcards(parent) |
Dan Talayco | 677c0b7 | 2011-08-23 22:53:38 -0700 | [diff] [blame] | 733 | if in_band: |
Rich Lane | e717c6e | 2013-03-12 10:25:50 -0700 | [diff] [blame] | 734 | wildcards &= ~ofp.OFPFW_IN_PORT |
Dan Talayco | 551befa | 2010-07-15 17:05:32 -0700 | [diff] [blame] | 735 | match.wildcards = wildcards |
| 736 | match.in_port = ing_port |
| 737 | |
Dan Talayco | f6e76c0 | 2012-03-23 10:56:12 -0700 | [diff] [blame] | 738 | if type(egr_ports) == type([]): |
| 739 | egr_port_list = egr_ports |
| 740 | else: |
| 741 | egr_port_list = [egr_ports] |
| 742 | |
Rich Lane | e717c6e | 2013-03-12 10:25:50 -0700 | [diff] [blame] | 743 | request = ofp.message.flow_add() |
Dan Talayco | 551befa | 2010-07-15 17:05:32 -0700 | [diff] [blame] | 744 | request.match = match |
| 745 | request.buffer_id = 0xffffffff |
| 746 | if check_expire: |
Rich Lane | e717c6e | 2013-03-12 10:25:50 -0700 | [diff] [blame] | 747 | request.flags |= ofp.OFPFF_SEND_FLOW_REM |
Dan Talayco | 551befa | 2010-07-15 17:05:32 -0700 | [diff] [blame] | 748 | request.hard_timeout = 1 |
| 749 | |
Rich Lane | 400fb9b | 2013-10-10 17:20:54 -0700 | [diff] [blame] | 750 | if ofp.OFP_VERSION == 1: |
| 751 | actions = request.actions |
| 752 | else: |
| 753 | actions = [] |
| 754 | request.instructions.append(ofp.instruction.apply_actions(actions)) |
| 755 | |
Dan Talayco | 551befa | 2010-07-15 17:05:32 -0700 | [diff] [blame] | 756 | if action_list is not None: |
Rich Lane | 400fb9b | 2013-10-10 17:20:54 -0700 | [diff] [blame] | 757 | actions.extend(action_list) |
Dan Talayco | 551befa | 2010-07-15 17:05:32 -0700 | [diff] [blame] | 758 | |
| 759 | # Set up output/enqueue action if directed |
| 760 | if egr_queue is not None: |
Dan Talayco | f6e76c0 | 2012-03-23 10:56:12 -0700 | [diff] [blame] | 761 | parent.assertTrue(egr_ports is not None, "Egress port not set") |
Rich Lane | e717c6e | 2013-03-12 10:25:50 -0700 | [diff] [blame] | 762 | act = ofp.action.enqueue() |
Dan Talayco | f6e76c0 | 2012-03-23 10:56:12 -0700 | [diff] [blame] | 763 | for egr_port in egr_port_list: |
| 764 | act.port = egr_port |
| 765 | act.queue_id = egr_queue |
Rich Lane | 400fb9b | 2013-10-10 17:20:54 -0700 | [diff] [blame] | 766 | actions.append(act) |
Dan Talayco | f6e76c0 | 2012-03-23 10:56:12 -0700 | [diff] [blame] | 767 | elif egr_ports is not None: |
| 768 | for egr_port in egr_port_list: |
Rich Lane | e717c6e | 2013-03-12 10:25:50 -0700 | [diff] [blame] | 769 | act = ofp.action.output() |
Dan Talayco | f6e76c0 | 2012-03-23 10:56:12 -0700 | [diff] [blame] | 770 | act.port = egr_port |
Rich Lane | 400fb9b | 2013-10-10 17:20:54 -0700 | [diff] [blame] | 771 | actions.append(act) |
Dan Talayco | 551befa | 2010-07-15 17:05:32 -0700 | [diff] [blame] | 772 | |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 773 | logging.debug(request.show()) |
Dan Talayco | 551befa | 2010-07-15 17:05:32 -0700 | [diff] [blame] | 774 | |
| 775 | return request |
| 776 | |
Jeffrey Townsend | f3eae9c | 2012-03-28 18:23:21 -0700 | [diff] [blame] | 777 | def flow_msg_install(parent, request, clear_table_override=None): |
Dan Talayco | 551befa | 2010-07-15 17:05:32 -0700 | [diff] [blame] | 778 | """ |
| 779 | Install a flow mod message in the switch |
| 780 | |
| 781 | @param parent Must implement controller, assertEqual, assertTrue |
| 782 | @param request The request, all set to go |
| 783 | @param clear_table If true, clear the flow table before installing |
| 784 | """ |
Dan Talayco | 8a64e33 | 2012-03-28 14:53:20 -0700 | [diff] [blame] | 785 | |
Rich Lane | 2014f9b | 2012-10-05 15:29:40 -0700 | [diff] [blame] | 786 | clear_table = test_param_get('clear_table', default=True) |
Jeffrey Townsend | f3eae9c | 2012-03-28 18:23:21 -0700 | [diff] [blame] | 787 | if(clear_table_override != None): |
| 788 | clear_table = clear_table_override |
| 789 | |
| 790 | if clear_table: |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 791 | logging.debug("Clear flow table") |
Rich Lane | 32bf948 | 2013-01-03 17:26:30 -0800 | [diff] [blame] | 792 | delete_all_flows(parent.controller) |
Dan Talayco | 551befa | 2010-07-15 17:05:32 -0700 | [diff] [blame] | 793 | |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 794 | logging.debug("Insert flow") |
Rich Lane | 5c3151c | 2013-01-03 17:15:41 -0800 | [diff] [blame] | 795 | parent.controller.message_send(request) |
Rich Lane | e912d03 | 2012-12-22 14:28:33 -0800 | [diff] [blame] | 796 | |
Rich Lane | 3a261d5 | 2013-01-03 17:45:08 -0800 | [diff] [blame] | 797 | do_barrier(parent.controller) |
Dan Talayco | 551befa | 2010-07-15 17:05:32 -0700 | [diff] [blame] | 798 | |
Ed Swierk | 99a74de | 2012-08-22 06:40:54 -0700 | [diff] [blame] | 799 | def flow_match_test_port_pair(parent, ing_port, egr_ports, wildcards=None, |
Rich Lane | d0478ff | 2013-03-11 12:46:58 -0700 | [diff] [blame] | 800 | vlan_vid=-1, pkt=None, exp_pkt=None, |
Rich Lane | e5779d3 | 2012-10-05 17:56:04 -0700 | [diff] [blame] | 801 | action_list=None): |
Dan Talayco | 551befa | 2010-07-15 17:05:32 -0700 | [diff] [blame] | 802 | """ |
| 803 | Flow match test on single TCP packet |
Dan Talayco | f6e76c0 | 2012-03-23 10:56:12 -0700 | [diff] [blame] | 804 | @param egr_ports A single port or list of ports |
Dan Talayco | 551befa | 2010-07-15 17:05:32 -0700 | [diff] [blame] | 805 | |
| 806 | Run test with packet through switch from ing_port to egr_port |
| 807 | See flow_match_test for parameter descriptions |
| 808 | """ |
| 809 | |
Ed Swierk | 99a74de | 2012-08-22 06:40:54 -0700 | [diff] [blame] | 810 | if wildcards is None: |
| 811 | wildcards = required_wildcards(parent) |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 812 | logging.info("Pkt match test: " + str(ing_port) + " to " + |
Dan Talayco | f6e76c0 | 2012-03-23 10:56:12 -0700 | [diff] [blame] | 813 | str(egr_ports)) |
Rich Lane | d0478ff | 2013-03-11 12:46:58 -0700 | [diff] [blame] | 814 | logging.debug(" WC: " + hex(wildcards) + " vlan: " + str(vlan_vid)) |
Dan Talayco | 551befa | 2010-07-15 17:05:32 -0700 | [diff] [blame] | 815 | if pkt is None: |
Rich Lane | d0478ff | 2013-03-11 12:46:58 -0700 | [diff] [blame] | 816 | pkt = simple_tcp_packet(dl_vlan_enable=(vlan_vid >= 0), vlan_vid=vlan_vid) |
Rich Lane | c41fbec | 2013-10-02 00:27:59 -0700 | [diff] [blame] | 817 | if exp_pkt is None: |
| 818 | exp_pkt = pkt |
Dan Talayco | 551befa | 2010-07-15 17:05:32 -0700 | [diff] [blame] | 819 | |
| 820 | request = flow_msg_create(parent, pkt, ing_port=ing_port, |
Dan Talayco | f6e76c0 | 2012-03-23 10:56:12 -0700 | [diff] [blame] | 821 | wildcards=wildcards, egr_ports=egr_ports, |
Dan Talayco | 551befa | 2010-07-15 17:05:32 -0700 | [diff] [blame] | 822 | action_list=action_list) |
| 823 | |
| 824 | flow_msg_install(parent, request) |
| 825 | |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 826 | logging.debug("Send packet: " + str(ing_port) + " to " + |
Dan Talayco | f6e76c0 | 2012-03-23 10:56:12 -0700 | [diff] [blame] | 827 | str(egr_ports)) |
Dan Talayco | 551befa | 2010-07-15 17:05:32 -0700 | [diff] [blame] | 828 | parent.dataplane.send(ing_port, str(pkt)) |
| 829 | |
Rich Lane | 8f45e2d | 2013-10-01 16:06:54 -0700 | [diff] [blame] | 830 | exp_ports = [ing_port if port == ofp.OFPP_IN_PORT else port for port in egr_ports] |
Rich Lane | e4b384d | 2013-09-13 14:33:40 -0700 | [diff] [blame] | 831 | verify_packets(parent, exp_pkt, exp_ports) |
Dan Talayco | 551befa | 2010-07-15 17:05:32 -0700 | [diff] [blame] | 832 | |
Rich Lane | 89725bb | 2012-12-03 16:23:27 -0800 | [diff] [blame] | 833 | def flow_match_test_pktout(parent, ing_port, egr_ports, |
Rich Lane | d0478ff | 2013-03-11 12:46:58 -0700 | [diff] [blame] | 834 | vlan_vid=-1, pkt=None, exp_pkt=None, |
Rich Lane | 89725bb | 2012-12-03 16:23:27 -0800 | [diff] [blame] | 835 | action_list=None): |
| 836 | """ |
| 837 | Packet-out test on single TCP packet |
| 838 | @param egr_ports A single port or list of ports |
| 839 | |
| 840 | Run test sending packet-out to egr_ports. The goal is to test the actions |
| 841 | taken on the packet, not the matching which is of course irrelevant. |
| 842 | See flow_match_test for parameter descriptions |
| 843 | """ |
| 844 | |
| 845 | if pkt is None: |
Rich Lane | d0478ff | 2013-03-11 12:46:58 -0700 | [diff] [blame] | 846 | pkt = simple_tcp_packet(dl_vlan_enable=(vlan_vid >= 0), vlan_vid=vlan_vid) |
Rich Lane | c41fbec | 2013-10-02 00:27:59 -0700 | [diff] [blame] | 847 | if exp_pkt is None: |
| 848 | exp_pkt = pkt |
Rich Lane | 89725bb | 2012-12-03 16:23:27 -0800 | [diff] [blame] | 849 | |
Rich Lane | e717c6e | 2013-03-12 10:25:50 -0700 | [diff] [blame] | 850 | msg = ofp.message.packet_out() |
Rich Lane | 89725bb | 2012-12-03 16:23:27 -0800 | [diff] [blame] | 851 | msg.in_port = ing_port |
Rich Lane | ea8c472 | 2013-04-04 15:30:20 -0700 | [diff] [blame] | 852 | msg.buffer_id = 0xffffffff |
Rich Lane | 89725bb | 2012-12-03 16:23:27 -0800 | [diff] [blame] | 853 | msg.data = str(pkt) |
| 854 | if action_list is not None: |
| 855 | for act in action_list: |
Rich Lane | c495d9e | 2013-03-08 17:43:36 -0800 | [diff] [blame] | 856 | msg.actions.append(act) |
Rich Lane | 89725bb | 2012-12-03 16:23:27 -0800 | [diff] [blame] | 857 | |
| 858 | # Set up output action |
| 859 | if egr_ports is not None: |
| 860 | for egr_port in egr_ports: |
Rich Lane | e717c6e | 2013-03-12 10:25:50 -0700 | [diff] [blame] | 861 | act = ofp.action.output() |
Rich Lane | 89725bb | 2012-12-03 16:23:27 -0800 | [diff] [blame] | 862 | act.port = egr_port |
Rich Lane | c495d9e | 2013-03-08 17:43:36 -0800 | [diff] [blame] | 863 | msg.actions.append(act) |
Rich Lane | 89725bb | 2012-12-03 16:23:27 -0800 | [diff] [blame] | 864 | |
| 865 | logging.debug(msg.show()) |
Rich Lane | 5c3151c | 2013-01-03 17:15:41 -0800 | [diff] [blame] | 866 | parent.controller.message_send(msg) |
Rich Lane | 89725bb | 2012-12-03 16:23:27 -0800 | [diff] [blame] | 867 | |
Rich Lane | 8f45e2d | 2013-10-01 16:06:54 -0700 | [diff] [blame] | 868 | exp_ports = [ing_port if port == ofp.OFPP_IN_PORT else port for port in egr_ports] |
Rich Lane | e4b384d | 2013-09-13 14:33:40 -0700 | [diff] [blame] | 869 | verify_packets(parent, exp_pkt, exp_ports) |
Rich Lane | 89725bb | 2012-12-03 16:23:27 -0800 | [diff] [blame] | 870 | |
Dan Talayco | f6e76c0 | 2012-03-23 10:56:12 -0700 | [diff] [blame] | 871 | def get_egr_list(parent, of_ports, how_many, exclude_list=[]): |
| 872 | """ |
| 873 | Generate a list of ports avoiding those in the exclude list |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 874 | @param parent Supplies logging |
Dan Talayco | f6e76c0 | 2012-03-23 10:56:12 -0700 | [diff] [blame] | 875 | @param of_ports List of OF port numbers |
| 876 | @param how_many Number of ports to be added to the list |
| 877 | @param exclude_list List of ports not to be used |
| 878 | @returns An empty list if unable to find enough ports |
| 879 | """ |
| 880 | |
Dan Talayco | c948d0b | 2012-03-23 12:17:54 -0700 | [diff] [blame] | 881 | if how_many == 0: |
| 882 | return [] |
| 883 | |
Dan Talayco | f6e76c0 | 2012-03-23 10:56:12 -0700 | [diff] [blame] | 884 | count = 0 |
| 885 | egr_ports = [] |
| 886 | for egr_idx in range(len(of_ports)): |
| 887 | if of_ports[egr_idx] not in exclude_list: |
| 888 | egr_ports.append(of_ports[egr_idx]) |
| 889 | count += 1 |
| 890 | if count >= how_many: |
| 891 | return egr_ports |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 892 | logging.debug("Could not generate enough egress ports for test") |
Dan Talayco | f6e76c0 | 2012-03-23 10:56:12 -0700 | [diff] [blame] | 893 | return [] |
| 894 | |
Rich Lane | d0478ff | 2013-03-11 12:46:58 -0700 | [diff] [blame] | 895 | def flow_match_test(parent, port_map, wildcards=None, vlan_vid=-1, pkt=None, |
Rich Lane | e5779d3 | 2012-10-05 17:56:04 -0700 | [diff] [blame] | 896 | exp_pkt=None, action_list=None, |
Dan Talayco | c948d0b | 2012-03-23 12:17:54 -0700 | [diff] [blame] | 897 | max_test=0, egr_count=1, ing_port=False): |
Dan Talayco | 551befa | 2010-07-15 17:05:32 -0700 | [diff] [blame] | 898 | """ |
Rich Lane | 89725bb | 2012-12-03 16:23:27 -0800 | [diff] [blame] | 899 | 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] | 900 | |
| 901 | @param max_test If > 0 no more than this number of tests are executed. |
| 902 | @param parent Must implement controller, dataplane, assertTrue, assertEqual |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 903 | and logging |
Dan Talayco | 551befa | 2010-07-15 17:05:32 -0700 | [diff] [blame] | 904 | @param pkt If not None, use this packet for ingress |
| 905 | @param wildcards For flow match entry |
Rich Lane | d0478ff | 2013-03-11 12:46:58 -0700 | [diff] [blame] | 906 | @param vlan_vid 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] | 907 | @param exp_pkt If not None, use this as the expected output pkt; els use pkt |
| 908 | @param action_list Additional actions to add to flow mod |
Dan Talayco | cfa172f | 2012-03-23 12:03:00 -0700 | [diff] [blame] | 909 | @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] | 910 | """ |
Ed Swierk | 99a74de | 2012-08-22 06:40:54 -0700 | [diff] [blame] | 911 | if wildcards is None: |
| 912 | wildcards = required_wildcards(parent) |
Dan Talayco | 551befa | 2010-07-15 17:05:32 -0700 | [diff] [blame] | 913 | of_ports = port_map.keys() |
| 914 | of_ports.sort() |
| 915 | parent.assertTrue(len(of_ports) > 1, "Not enough ports for test") |
| 916 | test_count = 0 |
| 917 | |
Dan Talayco | cfa172f | 2012-03-23 12:03:00 -0700 | [diff] [blame] | 918 | if egr_count == -1: |
Rich Lane | 2014f9b | 2012-10-05 15:29:40 -0700 | [diff] [blame] | 919 | egr_count = test_param_get('egr_count', default=2) |
Dan Talayco | cfa172f | 2012-03-23 12:03:00 -0700 | [diff] [blame] | 920 | |
Dan Talayco | 551befa | 2010-07-15 17:05:32 -0700 | [diff] [blame] | 921 | for ing_idx in range(len(of_ports)): |
| 922 | ingress_port = of_ports[ing_idx] |
Dan Talayco | f6e76c0 | 2012-03-23 10:56:12 -0700 | [diff] [blame] | 923 | egr_ports = get_egr_list(parent, of_ports, egr_count, |
| 924 | exclude_list=[ingress_port]) |
Dan Talayco | c948d0b | 2012-03-23 12:17:54 -0700 | [diff] [blame] | 925 | if ing_port: |
Rich Lane | e717c6e | 2013-03-12 10:25:50 -0700 | [diff] [blame] | 926 | egr_ports.append(ofp.OFPP_IN_PORT) |
Dan Talayco | f6e76c0 | 2012-03-23 10:56:12 -0700 | [diff] [blame] | 927 | if len(egr_ports) == 0: |
| 928 | parent.assertTrue(0, "Failed to generate egress port list") |
| 929 | |
| 930 | flow_match_test_port_pair(parent, ingress_port, egr_ports, |
Rich Lane | d0478ff | 2013-03-11 12:46:58 -0700 | [diff] [blame] | 931 | wildcards=wildcards, vlan_vid=vlan_vid, |
Dan Talayco | f6e76c0 | 2012-03-23 10:56:12 -0700 | [diff] [blame] | 932 | pkt=pkt, exp_pkt=exp_pkt, |
Rich Lane | e5779d3 | 2012-10-05 17:56:04 -0700 | [diff] [blame] | 933 | action_list=action_list) |
Dan Talayco | f6e76c0 | 2012-03-23 10:56:12 -0700 | [diff] [blame] | 934 | test_count += 1 |
| 935 | if (max_test > 0) and (test_count > max_test): |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 936 | logging.info("Ran " + str(test_count) + " tests; exiting") |
Rich Lane | 89725bb | 2012-12-03 16:23:27 -0800 | [diff] [blame] | 937 | break |
| 938 | |
Ed Swierk | 38eea08 | 2013-01-02 19:46:20 -0800 | [diff] [blame] | 939 | if not test_param_get('pktout_actions', default=True): |
| 940 | return |
Rich Lane | 89725bb | 2012-12-03 16:23:27 -0800 | [diff] [blame] | 941 | |
| 942 | ingress_port = of_ports[0] |
| 943 | egr_ports = get_egr_list(parent, of_ports, egr_count, |
| 944 | exclude_list=[ingress_port]) |
| 945 | if ing_port: |
Rich Lane | e717c6e | 2013-03-12 10:25:50 -0700 | [diff] [blame] | 946 | egr_ports.append(ofp.OFPP_IN_PORT) |
Rich Lane | 89725bb | 2012-12-03 16:23:27 -0800 | [diff] [blame] | 947 | flow_match_test_pktout(parent, ingress_port, egr_ports, |
Rich Lane | d0478ff | 2013-03-11 12:46:58 -0700 | [diff] [blame] | 948 | vlan_vid=vlan_vid, |
Rich Lane | 89725bb | 2012-12-03 16:23:27 -0800 | [diff] [blame] | 949 | pkt=pkt, exp_pkt=exp_pkt, |
| 950 | action_list=action_list) |
Dan Talayco | 551befa | 2010-07-15 17:05:32 -0700 | [diff] [blame] | 951 | |
Rich Lane | 2014f9b | 2012-10-05 15:29:40 -0700 | [diff] [blame] | 952 | def test_param_get(key, default=None): |
Dan Talayco | 4b2bee6 | 2010-07-20 14:10:05 -0700 | [diff] [blame] | 953 | """ |
| 954 | Return value passed via test-params if present |
| 955 | |
Dan Talayco | 4b2bee6 | 2010-07-20 14:10:05 -0700 | [diff] [blame] | 956 | @param key The lookup key |
| 957 | @param default Default value to use if not found |
| 958 | |
| 959 | If the pair 'key=val' appeared in the string passed to --test-params |
| 960 | on the command line, return val (as interpreted by exec). Otherwise |
| 961 | return default value. |
Dan Talayco | f6e76c0 | 2012-03-23 10:56:12 -0700 | [diff] [blame] | 962 | |
| 963 | WARNING: TEST PARAMETERS MUST BE PYTHON IDENTIFIERS; |
| 964 | eg egr_count, not egr-count. |
Dan Talayco | 4b2bee6 | 2010-07-20 14:10:05 -0700 | [diff] [blame] | 965 | """ |
| 966 | try: |
Rich Lane | cd97d3d | 2013-01-07 18:50:06 -0800 | [diff] [blame] | 967 | exec oftest.config["test_params"] |
Dan Talayco | 4b2bee6 | 2010-07-20 14:10:05 -0700 | [diff] [blame] | 968 | except: |
| 969 | return default |
| 970 | |
Dan Talayco | 4b2bee6 | 2010-07-20 14:10:05 -0700 | [diff] [blame] | 971 | try: |
Rich Lane | fdec0fb | 2013-08-09 18:01:05 -0700 | [diff] [blame] | 972 | return eval(str(key)) |
Dan Talayco | 4b2bee6 | 2010-07-20 14:10:05 -0700 | [diff] [blame] | 973 | except: |
| 974 | return default |
| 975 | |
| 976 | def action_generate(parent, field_to_mod, mod_field_vals): |
| 977 | """ |
| 978 | Create an action to modify the field indicated in field_to_mod |
| 979 | |
| 980 | @param parent Must implement, assertTrue |
| 981 | @param field_to_mod The field to modify as a string name |
| 982 | @param mod_field_vals Hash of values to use for modified values |
| 983 | """ |
| 984 | |
| 985 | act = None |
| 986 | |
| 987 | if field_to_mod in ['pktlen']: |
| 988 | return None |
| 989 | |
Rich Lane | d0478ff | 2013-03-11 12:46:58 -0700 | [diff] [blame] | 990 | if field_to_mod == 'eth_dst': |
Rich Lane | e717c6e | 2013-03-12 10:25:50 -0700 | [diff] [blame] | 991 | act = ofp.action.set_dl_dst() |
Rich Lane | f688351 | 2013-03-11 17:00:09 -0700 | [diff] [blame] | 992 | act.dl_addr = oftest.parse.parse_mac(mod_field_vals['eth_dst']) |
Rich Lane | d0478ff | 2013-03-11 12:46:58 -0700 | [diff] [blame] | 993 | elif field_to_mod == 'eth_src': |
Rich Lane | e717c6e | 2013-03-12 10:25:50 -0700 | [diff] [blame] | 994 | act = ofp.action.set_dl_src() |
Rich Lane | f688351 | 2013-03-11 17:00:09 -0700 | [diff] [blame] | 995 | act.dl_addr = oftest.parse.parse_mac(mod_field_vals['eth_src']) |
Dan Talayco | 4b2bee6 | 2010-07-20 14:10:05 -0700 | [diff] [blame] | 996 | elif field_to_mod == 'dl_vlan_enable': |
| 997 | if not mod_field_vals['dl_vlan_enable']: # Strip VLAN tag |
Rich Lane | e717c6e | 2013-03-12 10:25:50 -0700 | [diff] [blame] | 998 | act = ofp.action.strip_vlan() |
Rich Lane | d0478ff | 2013-03-11 12:46:58 -0700 | [diff] [blame] | 999 | # Add VLAN tag is handled by vlan_vid field |
Dan Talayco | 4b2bee6 | 2010-07-20 14:10:05 -0700 | [diff] [blame] | 1000 | # Will return None in this case |
Rich Lane | d0478ff | 2013-03-11 12:46:58 -0700 | [diff] [blame] | 1001 | elif field_to_mod == 'vlan_vid': |
Rich Lane | e717c6e | 2013-03-12 10:25:50 -0700 | [diff] [blame] | 1002 | act = ofp.action.set_vlan_vid() |
Rich Lane | d0478ff | 2013-03-11 12:46:58 -0700 | [diff] [blame] | 1003 | act.vlan_vid = mod_field_vals['vlan_vid'] |
| 1004 | elif field_to_mod == 'vlan_pcp': |
Rich Lane | e717c6e | 2013-03-12 10:25:50 -0700 | [diff] [blame] | 1005 | act = ofp.action.set_vlan_pcp() |
Rich Lane | d0478ff | 2013-03-11 12:46:58 -0700 | [diff] [blame] | 1006 | act.vlan_pcp = mod_field_vals['vlan_pcp'] |
Dan Talayco | 4b2bee6 | 2010-07-20 14:10:05 -0700 | [diff] [blame] | 1007 | elif field_to_mod == 'ip_src': |
Rich Lane | e717c6e | 2013-03-12 10:25:50 -0700 | [diff] [blame] | 1008 | act = ofp.action.set_nw_src() |
Rich Lane | f688351 | 2013-03-11 17:00:09 -0700 | [diff] [blame] | 1009 | act.nw_addr = oftest.parse.parse_ip(mod_field_vals['ip_src']) |
Dan Talayco | 4b2bee6 | 2010-07-20 14:10:05 -0700 | [diff] [blame] | 1010 | elif field_to_mod == 'ip_dst': |
Rich Lane | e717c6e | 2013-03-12 10:25:50 -0700 | [diff] [blame] | 1011 | act = ofp.action.set_nw_dst() |
Rich Lane | f688351 | 2013-03-11 17:00:09 -0700 | [diff] [blame] | 1012 | act.nw_addr = oftest.parse.parse_ip(mod_field_vals['ip_dst']) |
Dan Talayco | 4b2bee6 | 2010-07-20 14:10:05 -0700 | [diff] [blame] | 1013 | elif field_to_mod == 'ip_tos': |
Rich Lane | e717c6e | 2013-03-12 10:25:50 -0700 | [diff] [blame] | 1014 | act = ofp.action.set_nw_tos() |
Dan Talayco | 4b2bee6 | 2010-07-20 14:10:05 -0700 | [diff] [blame] | 1015 | act.nw_tos = mod_field_vals['ip_tos'] |
| 1016 | elif field_to_mod == 'tcp_sport': |
Rich Lane | e717c6e | 2013-03-12 10:25:50 -0700 | [diff] [blame] | 1017 | act = ofp.action.set_tp_src() |
Dan Talayco | 4b2bee6 | 2010-07-20 14:10:05 -0700 | [diff] [blame] | 1018 | act.tp_port = mod_field_vals['tcp_sport'] |
| 1019 | elif field_to_mod == 'tcp_dport': |
Rich Lane | e717c6e | 2013-03-12 10:25:50 -0700 | [diff] [blame] | 1020 | act = ofp.action.set_tp_dst() |
Dan Talayco | 4b2bee6 | 2010-07-20 14:10:05 -0700 | [diff] [blame] | 1021 | act.tp_port = mod_field_vals['tcp_dport'] |
Rich Lane | 110e0e3 | 2012-10-26 16:21:46 -0700 | [diff] [blame] | 1022 | elif field_to_mod == 'udp_sport': |
Rich Lane | e717c6e | 2013-03-12 10:25:50 -0700 | [diff] [blame] | 1023 | act = ofp.action.set_tp_src() |
Rich Lane | 110e0e3 | 2012-10-26 16:21:46 -0700 | [diff] [blame] | 1024 | act.tp_port = mod_field_vals['udp_sport'] |
| 1025 | elif field_to_mod == 'udp_dport': |
Rich Lane | e717c6e | 2013-03-12 10:25:50 -0700 | [diff] [blame] | 1026 | act = ofp.action.set_tp_dst() |
Rich Lane | 110e0e3 | 2012-10-26 16:21:46 -0700 | [diff] [blame] | 1027 | act.tp_port = mod_field_vals['udp_dport'] |
Dan Talayco | 4b2bee6 | 2010-07-20 14:10:05 -0700 | [diff] [blame] | 1028 | else: |
| 1029 | parent.assertTrue(0, "Unknown field to modify: " + str(field_to_mod)) |
| 1030 | |
| 1031 | return act |
| 1032 | |
| 1033 | def pkt_action_setup(parent, start_field_vals={}, mod_field_vals={}, |
Rich Lane | 110e0e3 | 2012-10-26 16:21:46 -0700 | [diff] [blame] | 1034 | mod_fields=[], tp="tcp", check_test_params=False): |
Dan Talayco | 4b2bee6 | 2010-07-20 14:10:05 -0700 | [diff] [blame] | 1035 | """ |
| 1036 | Set up the ingress and expected packet and action list for a test |
| 1037 | |
Rich Lane | 2014f9b | 2012-10-05 15:29:40 -0700 | [diff] [blame] | 1038 | @param parent Must implement assertTrue |
Dan Talayco | 4b2bee6 | 2010-07-20 14:10:05 -0700 | [diff] [blame] | 1039 | @param start_field_values Field values to use for ingress packet (optional) |
| 1040 | @param mod_field_values Field values to use for modified packet (optional) |
| 1041 | @param mod_fields The list of fields to be modified by the switch in the test. |
| 1042 | @params check_test_params If True, will check the parameters vid, add_vlan |
| 1043 | and strip_vlan from the command line. |
| 1044 | |
| 1045 | Returns a triple: pkt-to-send, expected-pkt, action-list |
| 1046 | """ |
| 1047 | |
| 1048 | new_actions = [] |
| 1049 | |
Dan Talayco | 4b2bee6 | 2010-07-20 14:10:05 -0700 | [diff] [blame] | 1050 | base_pkt_params = {} |
| 1051 | base_pkt_params['pktlen'] = 100 |
Rich Lane | d0478ff | 2013-03-11 12:46:58 -0700 | [diff] [blame] | 1052 | base_pkt_params['eth_dst'] = '00:DE:F0:12:34:56' |
| 1053 | base_pkt_params['eth_src'] = '00:23:45:67:89:AB' |
Dan Talayco | 4b2bee6 | 2010-07-20 14:10:05 -0700 | [diff] [blame] | 1054 | base_pkt_params['dl_vlan_enable'] = False |
Rich Lane | d0478ff | 2013-03-11 12:46:58 -0700 | [diff] [blame] | 1055 | base_pkt_params['vlan_vid'] = 2 |
| 1056 | base_pkt_params['vlan_pcp'] = 0 |
Dan Talayco | 4b2bee6 | 2010-07-20 14:10:05 -0700 | [diff] [blame] | 1057 | base_pkt_params['ip_src'] = '192.168.0.1' |
| 1058 | base_pkt_params['ip_dst'] = '192.168.0.2' |
| 1059 | base_pkt_params['ip_tos'] = 0 |
Rich Lane | 110e0e3 | 2012-10-26 16:21:46 -0700 | [diff] [blame] | 1060 | if tp == "tcp": |
| 1061 | base_pkt_params['tcp_sport'] = 1234 |
| 1062 | base_pkt_params['tcp_dport'] = 80 |
| 1063 | elif tp == "udp": |
| 1064 | base_pkt_params['udp_sport'] = 1234 |
| 1065 | base_pkt_params['udp_dport'] = 80 |
Dan Talayco | 4b2bee6 | 2010-07-20 14:10:05 -0700 | [diff] [blame] | 1066 | for keyname in start_field_vals.keys(): |
| 1067 | base_pkt_params[keyname] = start_field_vals[keyname] |
| 1068 | |
| 1069 | mod_pkt_params = {} |
| 1070 | mod_pkt_params['pktlen'] = 100 |
Rich Lane | d0478ff | 2013-03-11 12:46:58 -0700 | [diff] [blame] | 1071 | mod_pkt_params['eth_dst'] = '00:21:0F:ED:CB:A9' |
| 1072 | mod_pkt_params['eth_src'] = '00:ED:CB:A9:87:65' |
Dan Talayco | 4b2bee6 | 2010-07-20 14:10:05 -0700 | [diff] [blame] | 1073 | mod_pkt_params['dl_vlan_enable'] = False |
Rich Lane | d0478ff | 2013-03-11 12:46:58 -0700 | [diff] [blame] | 1074 | mod_pkt_params['vlan_vid'] = 3 |
| 1075 | mod_pkt_params['vlan_pcp'] = 7 |
Dan Talayco | 4b2bee6 | 2010-07-20 14:10:05 -0700 | [diff] [blame] | 1076 | mod_pkt_params['ip_src'] = '10.20.30.40' |
| 1077 | mod_pkt_params['ip_dst'] = '50.60.70.80' |
| 1078 | mod_pkt_params['ip_tos'] = 0xf0 |
Rich Lane | 110e0e3 | 2012-10-26 16:21:46 -0700 | [diff] [blame] | 1079 | if tp == "tcp": |
| 1080 | mod_pkt_params['tcp_sport'] = 4321 |
| 1081 | mod_pkt_params['tcp_dport'] = 8765 |
| 1082 | elif tp == "udp": |
| 1083 | mod_pkt_params['udp_sport'] = 4321 |
| 1084 | mod_pkt_params['udp_dport'] = 8765 |
Dan Talayco | 4b2bee6 | 2010-07-20 14:10:05 -0700 | [diff] [blame] | 1085 | for keyname in mod_field_vals.keys(): |
| 1086 | mod_pkt_params[keyname] = mod_field_vals[keyname] |
| 1087 | |
| 1088 | # Check for test param modifications |
| 1089 | strip = False |
| 1090 | if check_test_params: |
Rich Lane | 2014f9b | 2012-10-05 15:29:40 -0700 | [diff] [blame] | 1091 | add_vlan = test_param_get('add_vlan') |
| 1092 | strip_vlan = test_param_get('strip_vlan') |
| 1093 | vid = test_param_get('vid') |
Dan Talayco | 4b2bee6 | 2010-07-20 14:10:05 -0700 | [diff] [blame] | 1094 | |
| 1095 | if add_vlan and strip_vlan: |
| 1096 | parent.assertTrue(0, "Add and strip VLAN both specified") |
| 1097 | |
| 1098 | if vid: |
| 1099 | base_pkt_params['dl_vlan_enable'] = True |
Rich Lane | d0478ff | 2013-03-11 12:46:58 -0700 | [diff] [blame] | 1100 | base_pkt_params['vlan_vid'] = vid |
| 1101 | if 'vlan_vid' in mod_fields: |
| 1102 | mod_pkt_params['vlan_vid'] = vid + 1 |
Dan Talayco | 4b2bee6 | 2010-07-20 14:10:05 -0700 | [diff] [blame] | 1103 | |
| 1104 | if add_vlan: |
| 1105 | base_pkt_params['dl_vlan_enable'] = False |
| 1106 | mod_pkt_params['dl_vlan_enable'] = True |
| 1107 | mod_pkt_params['pktlen'] = base_pkt_params['pktlen'] + 4 |
| 1108 | mod_fields.append('pktlen') |
| 1109 | mod_fields.append('dl_vlan_enable') |
Rich Lane | d0478ff | 2013-03-11 12:46:58 -0700 | [diff] [blame] | 1110 | if 'vlan_vid' not in mod_fields: |
| 1111 | mod_fields.append('vlan_vid') |
Dan Talayco | 4b2bee6 | 2010-07-20 14:10:05 -0700 | [diff] [blame] | 1112 | elif strip_vlan: |
| 1113 | base_pkt_params['dl_vlan_enable'] = True |
| 1114 | mod_pkt_params['dl_vlan_enable'] = False |
| 1115 | mod_pkt_params['pktlen'] = base_pkt_params['pktlen'] - 4 |
| 1116 | mod_fields.append('dl_vlan_enable') |
| 1117 | mod_fields.append('pktlen') |
| 1118 | |
Rich Lane | 110e0e3 | 2012-10-26 16:21:46 -0700 | [diff] [blame] | 1119 | if tp == "tcp": |
| 1120 | packet_builder = simple_tcp_packet |
| 1121 | elif tp == "udp": |
| 1122 | packet_builder = simple_udp_packet |
| 1123 | else: |
| 1124 | raise NotImplementedError("unknown transport protocol %s" % tp) |
| 1125 | |
Dan Talayco | 4b2bee6 | 2010-07-20 14:10:05 -0700 | [diff] [blame] | 1126 | # Build the ingress packet |
Rich Lane | 110e0e3 | 2012-10-26 16:21:46 -0700 | [diff] [blame] | 1127 | ingress_pkt = packet_builder(**base_pkt_params) |
Dan Talayco | 4b2bee6 | 2010-07-20 14:10:05 -0700 | [diff] [blame] | 1128 | |
| 1129 | # Build the expected packet, modifying the indicated fields |
| 1130 | for item in mod_fields: |
| 1131 | base_pkt_params[item] = mod_pkt_params[item] |
| 1132 | act = action_generate(parent, item, mod_pkt_params) |
| 1133 | if act: |
| 1134 | new_actions.append(act) |
| 1135 | |
Rich Lane | 110e0e3 | 2012-10-26 16:21:46 -0700 | [diff] [blame] | 1136 | expected_pkt = packet_builder(**base_pkt_params) |
Dan Talayco | 4b2bee6 | 2010-07-20 14:10:05 -0700 | [diff] [blame] | 1137 | |
| 1138 | return (ingress_pkt, expected_pkt, new_actions) |
Dan Talayco | 677c0b7 | 2011-08-23 22:53:38 -0700 | [diff] [blame] | 1139 | |
| 1140 | # Generate a simple "drop" flow mod |
| 1141 | # If in_band is true, then only drop from first test port |
| 1142 | def flow_mod_gen(port_map, in_band): |
Rich Lane | e717c6e | 2013-03-12 10:25:50 -0700 | [diff] [blame] | 1143 | request = ofp.message.flow_add() |
| 1144 | request.match.wildcards = ofp.OFPFW_ALL |
Dan Talayco | 677c0b7 | 2011-08-23 22:53:38 -0700 | [diff] [blame] | 1145 | if in_band: |
Rich Lane | e717c6e | 2013-03-12 10:25:50 -0700 | [diff] [blame] | 1146 | request.match.wildcards = ofp.OFPFW_ALL - ofp.OFPFW_IN_PORT |
Dan Talayco | 677c0b7 | 2011-08-23 22:53:38 -0700 | [diff] [blame] | 1147 | for of_port, ifname in port_map.items(): # Grab first port |
| 1148 | break |
| 1149 | request.match.in_port = of_port |
| 1150 | request.buffer_id = 0xffffffff |
| 1151 | return request |
Dan Talayco | ba3745c | 2010-07-21 21:51:08 -0700 | [diff] [blame] | 1152 | |
| 1153 | def skip_message_emit(parent, s): |
| 1154 | """ |
| 1155 | Print out a 'skipped' message to stderr |
| 1156 | |
| 1157 | @param s The string to print out to the log file |
Dan Talayco | ba3745c | 2010-07-21 21:51:08 -0700 | [diff] [blame] | 1158 | """ |
| 1159 | global skipped_test_count |
| 1160 | |
| 1161 | skipped_test_count += 1 |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 1162 | logging.info("Skipping: " + s) |
Dan Talayco | 2940fdd | 2013-02-06 15:01:35 -0800 | [diff] [blame] | 1163 | if oftest.config["debug"] < logging.WARNING: |
Dan Talayco | ba3745c | 2010-07-21 21:51:08 -0700 | [diff] [blame] | 1164 | sys.stderr.write("(skipped) ") |
| 1165 | else: |
| 1166 | sys.stderr.write("(S)") |
Dan Talayco | 677c0b7 | 2011-08-23 22:53:38 -0700 | [diff] [blame] | 1167 | |
Dan Talayco | 8a64e33 | 2012-03-28 14:53:20 -0700 | [diff] [blame] | 1168 | |
| 1169 | def all_stats_get(parent): |
| 1170 | """ |
| 1171 | Get the aggregate stats for all flows in the table |
| 1172 | @param parent Test instance with controller connection and assert |
| 1173 | @returns dict with keys flows, packets, bytes, active (flows), |
| 1174 | lookups, matched |
| 1175 | """ |
Rich Lane | e717c6e | 2013-03-12 10:25:50 -0700 | [diff] [blame] | 1176 | stat_req = ofp.message.aggregate_stats_request() |
| 1177 | stat_req.match = ofp.match() |
| 1178 | stat_req.match.wildcards = ofp.OFPFW_ALL |
Dan Talayco | 8a64e33 | 2012-03-28 14:53:20 -0700 | [diff] [blame] | 1179 | stat_req.table_id = 0xff |
Rich Lane | e717c6e | 2013-03-12 10:25:50 -0700 | [diff] [blame] | 1180 | stat_req.out_port = ofp.OFPP_NONE |
Dan Talayco | 8a64e33 | 2012-03-28 14:53:20 -0700 | [diff] [blame] | 1181 | |
| 1182 | rv = {} |
| 1183 | |
Rich Lane | c8aaa3e | 2012-07-26 19:28:02 -0700 | [diff] [blame] | 1184 | (reply, pkt) = parent.controller.transact(stat_req) |
Rich Lane | 5fd6faf | 2013-03-11 13:30:20 -0700 | [diff] [blame] | 1185 | parent.assertTrue(len(reply.entries) == 1, "Did not receive flow stats reply") |
Dan Talayco | 8a64e33 | 2012-03-28 14:53:20 -0700 | [diff] [blame] | 1186 | |
Rich Lane | 5fd6faf | 2013-03-11 13:30:20 -0700 | [diff] [blame] | 1187 | for obj in reply.entries: |
Dan Talayco | 8a64e33 | 2012-03-28 14:53:20 -0700 | [diff] [blame] | 1188 | (rv["flows"], rv["packets"], rv["bytes"]) = (obj.flow_count, |
| 1189 | obj.packet_count, obj.byte_count) |
| 1190 | break |
| 1191 | |
Rich Lane | e717c6e | 2013-03-12 10:25:50 -0700 | [diff] [blame] | 1192 | request = ofp.message.table_stats_request() |
Rich Lane | c8aaa3e | 2012-07-26 19:28:02 -0700 | [diff] [blame] | 1193 | (reply , pkt) = parent.controller.transact(request) |
Dan Talayco | 8a64e33 | 2012-03-28 14:53:20 -0700 | [diff] [blame] | 1194 | |
| 1195 | |
| 1196 | (rv["active"], rv["lookups"], rv["matched"]) = (0,0,0) |
Rich Lane | 5fd6faf | 2013-03-11 13:30:20 -0700 | [diff] [blame] | 1197 | for obj in reply.entries: |
Dan Talayco | 8a64e33 | 2012-03-28 14:53:20 -0700 | [diff] [blame] | 1198 | rv["active"] += obj.active_count |
| 1199 | rv["lookups"] += obj.lookup_count |
| 1200 | rv["matched"] += obj.matched_count |
| 1201 | |
| 1202 | return rv |
Dan Talayco | 2baf8b5 | 2012-03-30 09:55:42 -0700 | [diff] [blame] | 1203 | |
Rich Lane | 7744e11 | 2013-01-11 17:23:57 -0800 | [diff] [blame] | 1204 | _import_blacklist.add('FILTER') |
Dan Talayco | 2baf8b5 | 2012-03-30 09:55:42 -0700 | [diff] [blame] | 1205 | FILTER=''.join([(len(repr(chr(x)))==3) and chr(x) or '.' |
| 1206 | for x in range(256)]) |
| 1207 | |
| 1208 | def hex_dump_buffer(src, length=16): |
| 1209 | """ |
| 1210 | Convert src to a hex dump string and return the string |
| 1211 | @param src The source buffer |
| 1212 | @param length The number of bytes shown in each line |
| 1213 | @returns A string showing the hex dump |
| 1214 | """ |
Dan Talayco | c516fa0 | 2012-04-12 22:28:43 -0700 | [diff] [blame] | 1215 | result = ["\n"] |
Dan Talayco | 2baf8b5 | 2012-03-30 09:55:42 -0700 | [diff] [blame] | 1216 | for i in xrange(0, len(src), length): |
| 1217 | chars = src[i:i+length] |
| 1218 | hex = ' '.join(["%02x" % ord(x) for x in chars]) |
| 1219 | printable = ''.join(["%s" % ((ord(x) <= 127 and |
| 1220 | FILTER[ord(x)]) or '.') for x in chars]) |
| 1221 | result.append("%04x %-*s %s\n" % (i, length*3, hex, printable)) |
| 1222 | return ''.join(result) |
| 1223 | |
| 1224 | def format_packet(pkt): |
| 1225 | return "Packet length %d \n%s" % (len(str(pkt)), |
| 1226 | hex_dump_buffer(str(pkt))) |
Rich Lane | 5d7e89a | 2012-10-26 16:43:13 -0700 | [diff] [blame] | 1227 | |
| 1228 | def inspect_packet(pkt): |
| 1229 | """ |
| 1230 | Wrapper around scapy's show() method. |
| 1231 | @returns A string showing the dissected packet. |
| 1232 | """ |
| 1233 | from cStringIO import StringIO |
| 1234 | out = None |
| 1235 | backup = sys.stdout |
| 1236 | try: |
Rich Lane | fdec0fb | 2013-08-09 18:01:05 -0700 | [diff] [blame] | 1237 | tmp = StringIO() |
| 1238 | sys.stdout = tmp |
Rich Lane | 5d7e89a | 2012-10-26 16:43:13 -0700 | [diff] [blame] | 1239 | pkt.show2() |
Rich Lane | fdec0fb | 2013-08-09 18:01:05 -0700 | [diff] [blame] | 1240 | out = tmp.getvalue() |
| 1241 | tmp.close() |
Rich Lane | 5d7e89a | 2012-10-26 16:43:13 -0700 | [diff] [blame] | 1242 | finally: |
| 1243 | sys.stdout = backup |
| 1244 | return out |
Rich Lane | 0a4f637 | 2013-01-02 14:40:22 -0800 | [diff] [blame] | 1245 | |
| 1246 | def nonstandard(cls): |
| 1247 | """ |
Rich Lane | cc45b8e | 2013-01-02 15:55:02 -0800 | [diff] [blame] | 1248 | Testcase decorator that marks the test as being non-standard. |
| 1249 | These tests are not automatically added to the "standard" group. |
Rich Lane | 0a4f637 | 2013-01-02 14:40:22 -0800 | [diff] [blame] | 1250 | """ |
Rich Lane | cc45b8e | 2013-01-02 15:55:02 -0800 | [diff] [blame] | 1251 | cls._nonstandard = True |
Rich Lane | 0a4f637 | 2013-01-02 14:40:22 -0800 | [diff] [blame] | 1252 | return cls |
| 1253 | |
| 1254 | def disabled(cls): |
| 1255 | """ |
Rich Lane | cc45b8e | 2013-01-02 15:55:02 -0800 | [diff] [blame] | 1256 | Testcase decorator that marks the test as being disabled. |
| 1257 | These tests are not automatically added to the "standard" group or |
| 1258 | their module's group. |
Rich Lane | 0a4f637 | 2013-01-02 14:40:22 -0800 | [diff] [blame] | 1259 | """ |
Rich Lane | cc45b8e | 2013-01-02 15:55:02 -0800 | [diff] [blame] | 1260 | cls._disabled = True |
Rich Lane | 0a4f637 | 2013-01-02 14:40:22 -0800 | [diff] [blame] | 1261 | return cls |
Rich Lane | 97e9965 | 2013-01-02 17:23:20 -0800 | [diff] [blame] | 1262 | |
| 1263 | def group(name): |
| 1264 | """ |
| 1265 | Testcase decorator that adds the test to a group. |
| 1266 | """ |
| 1267 | def fn(cls): |
| 1268 | if not hasattr(cls, "_groups"): |
| 1269 | cls._groups = [] |
| 1270 | cls._groups.append(name) |
| 1271 | return cls |
| 1272 | return fn |
Rich Lane | 5a9a192 | 2013-01-11 14:29:30 -0800 | [diff] [blame] | 1273 | |
| 1274 | def version(ver): |
| 1275 | """ |
| 1276 | Testcase decorator that specifies which versions of OpenFlow the test |
| 1277 | supports. The default is 1.0+. This decorator may only be used once. |
| 1278 | |
| 1279 | Supported syntax: |
| 1280 | 1.0 -> 1.0 |
| 1281 | 1.0,1.2,1.3 -> 1.0, 1.2, 1.3 |
| 1282 | 1.0+ -> 1.0, 1.1, 1.2, 1.3 |
| 1283 | """ |
| 1284 | versions = parse_version(ver) |
| 1285 | def fn(cls): |
| 1286 | cls._versions = versions |
| 1287 | return cls |
| 1288 | return fn |
| 1289 | |
| 1290 | def parse_version(ver): |
| 1291 | allowed_versions = ["1.0", "1.1", "1.2", "1.3"] |
| 1292 | if re.match("^1\.\d+$", ver): |
| 1293 | versions = set([ver]) |
| 1294 | elif re.match("^(1\.\d+)\+$", ver): |
| 1295 | if not ver[:-1] in allowed_versions: |
| 1296 | raise ValueError("invalid OpenFlow version %s" % ver[:-1]) |
| 1297 | versions = set() |
| 1298 | if ver != "1.1+": versions.add("1.0") |
| 1299 | if ver != "1.2+": versions.add("1.1") |
| 1300 | if ver != "1.3+": versions.add("1.2") |
| 1301 | versions.add("1.3") |
| 1302 | else: |
| 1303 | versions = set(ver.split(',')) |
| 1304 | |
| 1305 | for version in versions: |
| 1306 | if not version in allowed_versions: |
| 1307 | raise ValueError("invalid OpenFlow version %s" % version) |
| 1308 | |
| 1309 | return versions |
| 1310 | |
| 1311 | assert(parse_version("1.0") == set(["1.0"])) |
| 1312 | assert(parse_version("1.0,1.2,1.3") == set(["1.0", "1.2", "1.3"])) |
| 1313 | assert(parse_version("1.0+") == set(["1.0", "1.1", "1.2", "1.3"])) |
Rich Lane | 7744e11 | 2013-01-11 17:23:57 -0800 | [diff] [blame] | 1314 | |
Rich Lane | ae3428c | 2013-03-07 14:37:42 -0800 | [diff] [blame] | 1315 | def get_stats(test, req): |
| 1316 | """ |
| 1317 | Retrieve a list of stats entries. Handles OFPSF_REPLY_MORE. |
| 1318 | """ |
Rich Lane | 609194f | 2013-10-21 06:17:37 -0700 | [diff] [blame] | 1319 | msgtype = ofp.OFPT_STATS_REPLY |
| 1320 | more_flag = ofp.OFPSF_REPLY_MORE |
Rich Lane | ae3428c | 2013-03-07 14:37:42 -0800 | [diff] [blame] | 1321 | stats = [] |
| 1322 | reply, _ = test.controller.transact(req) |
| 1323 | test.assertTrue(reply is not None, "No response to stats request") |
Rich Lane | 34c68d5 | 2013-10-11 10:38:21 -0700 | [diff] [blame] | 1324 | test.assertEquals(reply.type, msgtype, "Response had unexpected message type") |
Rich Lane | 5fd6faf | 2013-03-11 13:30:20 -0700 | [diff] [blame] | 1325 | stats.extend(reply.entries) |
Rich Lane | bd56ed6 | 2013-07-10 15:49:44 -0700 | [diff] [blame] | 1326 | while reply.flags & more_flag != 0: |
Rich Lane | 34c68d5 | 2013-10-11 10:38:21 -0700 | [diff] [blame] | 1327 | reply, pkt = test.controller.poll(exp_msg=msgtype) |
Rich Lane | ae3428c | 2013-03-07 14:37:42 -0800 | [diff] [blame] | 1328 | test.assertTrue(reply is not None, "No response to stats request") |
Rich Lane | 5fd6faf | 2013-03-11 13:30:20 -0700 | [diff] [blame] | 1329 | stats.extend(reply.entries) |
Rich Lane | ae3428c | 2013-03-07 14:37:42 -0800 | [diff] [blame] | 1330 | return stats |
| 1331 | |
Rich Lane | bd56ed6 | 2013-07-10 15:49:44 -0700 | [diff] [blame] | 1332 | def get_flow_stats(test, match, table_id=None, |
| 1333 | out_port=None, out_group=None, |
| 1334 | cookie=0, cookie_mask=0): |
Rich Lane | ae3428c | 2013-03-07 14:37:42 -0800 | [diff] [blame] | 1335 | """ |
| 1336 | Retrieve a list of flow stats entries. |
| 1337 | """ |
Rich Lane | bd56ed6 | 2013-07-10 15:49:44 -0700 | [diff] [blame] | 1338 | |
| 1339 | if table_id == None: |
| 1340 | if ofp.OFP_VERSION <= 2: |
| 1341 | table_id = 0xff |
| 1342 | else: |
| 1343 | table_id = ofp.OFPTT_ALL |
| 1344 | |
Rich Lane | f3bc48c | 2013-05-03 17:39:35 -0700 | [diff] [blame] | 1345 | if out_port == None: |
Rich Lane | bd56ed6 | 2013-07-10 15:49:44 -0700 | [diff] [blame] | 1346 | if ofp.OFP_VERSION == 1: |
| 1347 | out_port = ofp.OFPP_NONE |
| 1348 | else: |
| 1349 | out_port = ofp.OFPP_ANY |
| 1350 | |
| 1351 | if out_group == None: |
| 1352 | if ofp.OFP_VERSION > 1: |
| 1353 | out_group = ofp.OFPP_ANY |
| 1354 | |
Rich Lane | e717c6e | 2013-03-12 10:25:50 -0700 | [diff] [blame] | 1355 | req = ofp.message.flow_stats_request(match=match, |
Rich Lane | bd56ed6 | 2013-07-10 15:49:44 -0700 | [diff] [blame] | 1356 | table_id=table_id, |
| 1357 | out_port=out_port) |
| 1358 | if ofp.OFP_VERSION > 1: |
| 1359 | req.out_group = out_group |
| 1360 | req.cookie = cookie |
| 1361 | req.cookie_mask = cookie_mask |
| 1362 | |
Rich Lane | ae3428c | 2013-03-07 14:37:42 -0800 | [diff] [blame] | 1363 | return get_stats(test, req) |
| 1364 | |
Rich Lane | 968b619 | 2013-03-07 15:34:43 -0800 | [diff] [blame] | 1365 | def get_port_stats(test, port_no): |
| 1366 | """ |
| 1367 | Retrieve a list of port stats entries. |
| 1368 | """ |
Rich Lane | e717c6e | 2013-03-12 10:25:50 -0700 | [diff] [blame] | 1369 | req = ofp.message.port_stats_request(port_no=port_no) |
Rich Lane | 968b619 | 2013-03-07 15:34:43 -0800 | [diff] [blame] | 1370 | return get_stats(test, req) |
| 1371 | |
Rich Lane | 6a33492 | 2013-03-07 16:14:52 -0800 | [diff] [blame] | 1372 | def get_queue_stats(test, port_no, queue_id): |
| 1373 | """ |
| 1374 | Retrieve a list of queue stats entries. |
| 1375 | """ |
Rich Lane | e717c6e | 2013-03-12 10:25:50 -0700 | [diff] [blame] | 1376 | req = ofp.message.queue_stats_request(port_no=port_no, queue_id=queue_id) |
Rich Lane | 6a33492 | 2013-03-07 16:14:52 -0800 | [diff] [blame] | 1377 | return get_stats(test, req) |
| 1378 | |
Rich Lane | ae3428c | 2013-03-07 14:37:42 -0800 | [diff] [blame] | 1379 | def verify_flow_stats(test, match, table_id=0xff, |
Rich Lane | ae3428c | 2013-03-07 14:37:42 -0800 | [diff] [blame] | 1380 | initial=[], |
| 1381 | pkts=None, bytes=None): |
| 1382 | """ |
| 1383 | Verify that flow stats changed as expected. |
| 1384 | |
| 1385 | Optionally takes an 'initial' list of stats entries, as returned by |
| 1386 | get_flow_stats(). If 'initial' is not given the counters are assumed to |
| 1387 | begin at 0. |
| 1388 | """ |
Rich Lane | f3bc48c | 2013-05-03 17:39:35 -0700 | [diff] [blame] | 1389 | |
Rich Lane | ae3428c | 2013-03-07 14:37:42 -0800 | [diff] [blame] | 1390 | def accumulate(stats): |
| 1391 | pkts_acc = bytes_acc = 0 |
| 1392 | for stat in stats: |
| 1393 | pkts_acc += stat.packet_count |
| 1394 | bytes_acc += stat.byte_count |
| 1395 | return (pkts_acc, bytes_acc) |
| 1396 | |
| 1397 | pkts_before, bytes_before = accumulate(initial) |
| 1398 | |
| 1399 | # Wait 10s for counters to update |
| 1400 | pkt_diff = byte_diff = None |
| 1401 | for i in range(0, 100): |
Rich Lane | 61edad5 | 2014-03-28 16:25:08 -0700 | [diff] [blame] | 1402 | stats = get_flow_stats(test, match, table_id=table_id) |
Rich Lane | ae3428c | 2013-03-07 14:37:42 -0800 | [diff] [blame] | 1403 | pkts_after, bytes_after = accumulate(stats) |
| 1404 | pkt_diff = pkts_after - pkts_before |
| 1405 | byte_diff = bytes_after - bytes_before |
| 1406 | if (pkts == None or pkt_diff >= pkts) and \ |
| 1407 | (bytes == None or byte_diff >= bytes): |
| 1408 | break |
Dan Talayco | 5372473 | 2013-03-08 23:54:02 -0800 | [diff] [blame] | 1409 | time.sleep(0.1) |
Rich Lane | ae3428c | 2013-03-07 14:37:42 -0800 | [diff] [blame] | 1410 | |
| 1411 | if pkts != None: |
| 1412 | test.assertEquals(pkt_diff, pkts, "Flow packet counter not updated properly (expected increase of %d, got increase of %d)" % (pkts, pkt_diff)) |
| 1413 | |
| 1414 | if bytes != None: |
Rich Lane | 53b9681 | 2013-03-07 16:54:50 -0800 | [diff] [blame] | 1415 | test.assertTrue(byte_diff >= bytes and byte_diff <= bytes*1.1, |
| 1416 | "Flow byte counter not updated properly (expected increase of %d, got increase of %d)" % (bytes, byte_diff)) |
Rich Lane | ae3428c | 2013-03-07 14:37:42 -0800 | [diff] [blame] | 1417 | |
Rich Lane | 968b619 | 2013-03-07 15:34:43 -0800 | [diff] [blame] | 1418 | def verify_port_stats(test, port, |
| 1419 | initial=[], |
| 1420 | tx_pkts=None, rx_pkts=None, |
| 1421 | tx_bytes=None, rx_bytes=None): |
| 1422 | """ |
| 1423 | Verify that port stats changed as expected. |
| 1424 | |
| 1425 | Optionally takes an 'initial' list of stats entries, as returned by |
| 1426 | get_port_stats(). If 'initial' is not given the counters are assumed to |
| 1427 | begin at 0. |
| 1428 | """ |
| 1429 | def accumulate(stats): |
| 1430 | tx_pkts_acc = rx_pkts_acc = tx_bytes_acc = rx_bytes_acc = 0 |
| 1431 | for stat in stats: |
| 1432 | tx_pkts_acc += stat.tx_packets |
| 1433 | rx_pkts_acc += stat.rx_packets |
| 1434 | tx_bytes_acc += stat.tx_bytes |
| 1435 | rx_bytes_acc += stat.rx_bytes |
| 1436 | return (tx_pkts_acc, rx_pkts_acc, tx_bytes_acc, rx_bytes_acc) |
| 1437 | |
| 1438 | tx_pkts_before, rx_pkts_before, \ |
| 1439 | tx_bytes_before, rx_bytes_before = accumulate(initial) |
| 1440 | |
| 1441 | # Wait 10s for counters to update |
| 1442 | for i in range(0, 100): |
| 1443 | stats = get_port_stats(test, port) |
| 1444 | tx_pkts_after, rx_pkts_after, \ |
| 1445 | tx_bytes_after, rx_bytes_after = accumulate(stats) |
| 1446 | tx_pkts_diff = tx_pkts_after - tx_pkts_before |
| 1447 | rx_pkts_diff = rx_pkts_after - rx_pkts_before |
| 1448 | tx_bytes_diff = tx_bytes_after - tx_bytes_before |
| 1449 | rx_bytes_diff = rx_bytes_after - rx_bytes_before |
| 1450 | if (tx_pkts == None or tx_pkts == tx_pkts_diff) and \ |
| 1451 | (rx_pkts == None or rx_pkts == rx_pkts_diff) and \ |
Rich Lane | 53b9681 | 2013-03-07 16:54:50 -0800 | [diff] [blame] | 1452 | (tx_bytes == None or tx_bytes <= tx_bytes_diff) and \ |
| 1453 | (rx_bytes == None or rx_bytes <= rx_bytes_diff): |
Rich Lane | 968b619 | 2013-03-07 15:34:43 -0800 | [diff] [blame] | 1454 | break |
| 1455 | time.sleep(0.1) |
| 1456 | |
| 1457 | if (tx_pkts != None): |
| 1458 | test.assertEqual(tx_pkts,tx_pkts_diff,"Port TX packet counter is not updated correctly (expected increase of %d, got increase of %d)" % (tx_pkts, tx_pkts_diff)) |
| 1459 | if (rx_pkts != None): |
| 1460 | test.assertEqual(rx_pkts,rx_pkts_diff,"Port RX packet counter is not updated correctly (expected increase of %d, got increase of %d)" % (rx_pkts, rx_pkts_diff)) |
| 1461 | if (tx_bytes != None): |
Rich Lane | 53b9681 | 2013-03-07 16:54:50 -0800 | [diff] [blame] | 1462 | test.assertTrue(tx_bytes_diff >= tx_bytes and tx_bytes_diff <= tx_bytes*1.1, |
| 1463 | "Port TX byte counter is not updated correctly (expected increase of %d, got increase of %d)" % (tx_bytes, tx_bytes_diff)) |
Rich Lane | 968b619 | 2013-03-07 15:34:43 -0800 | [diff] [blame] | 1464 | if (rx_bytes != None): |
Rich Lane | 53b9681 | 2013-03-07 16:54:50 -0800 | [diff] [blame] | 1465 | test.assertTrue(rx_bytes_diff >= rx_bytes and rx_bytes_diff <= rx_bytes*1.1, |
| 1466 | "Port RX byte counter is not updated correctly (expected increase of %d, got increase of %d)" % (rx_bytes, rx_bytes_diff)) |
Rich Lane | 968b619 | 2013-03-07 15:34:43 -0800 | [diff] [blame] | 1467 | |
Rich Lane | 6a33492 | 2013-03-07 16:14:52 -0800 | [diff] [blame] | 1468 | def verify_queue_stats(test, port_no, queue_id, |
| 1469 | initial=[], |
| 1470 | pkts=None, bytes=None): |
| 1471 | """ |
| 1472 | Verify that queue stats changed as expected. |
| 1473 | |
| 1474 | Optionally takes an 'initial' list of stats entries, as returned by |
| 1475 | get_queue_stats(). If 'initial' is not given the counters are assumed to |
| 1476 | begin at 0. |
| 1477 | """ |
| 1478 | def accumulate(stats): |
| 1479 | pkts_acc = bytes_acc = 0 |
| 1480 | for stat in stats: |
| 1481 | pkts_acc += stat.tx_packets |
| 1482 | bytes_acc += stat.tx_bytes |
| 1483 | return (pkts_acc, bytes_acc) |
| 1484 | |
| 1485 | pkts_before, bytes_before = accumulate(initial) |
| 1486 | |
| 1487 | # Wait 10s for counters to update |
| 1488 | pkt_diff = byte_diff = None |
| 1489 | for i in range(0, 100): |
| 1490 | stats = get_queue_stats(test, port_no, queue_id) |
| 1491 | pkts_after, bytes_after = accumulate(stats) |
| 1492 | pkt_diff = pkts_after - pkts_before |
| 1493 | byte_diff = bytes_after - bytes_before |
| 1494 | if (pkts == None or pkt_diff >= pkts) and \ |
| 1495 | (bytes == None or byte_diff >= bytes): |
| 1496 | break |
Dan Talayco | 5372473 | 2013-03-08 23:54:02 -0800 | [diff] [blame] | 1497 | time.sleep(0.1) |
Rich Lane | 6a33492 | 2013-03-07 16:14:52 -0800 | [diff] [blame] | 1498 | |
| 1499 | if pkts != None: |
| 1500 | test.assertEquals(pkt_diff, pkts, "Queue packet counter not updated properly (expected increase of %d, got increase of %d)" % (pkts, pkt_diff)) |
| 1501 | |
| 1502 | if bytes != None: |
Rich Lane | 53b9681 | 2013-03-07 16:54:50 -0800 | [diff] [blame] | 1503 | test.assertTrue(byte_diff >= bytes and byte_diff <= bytes*1.1, |
| 1504 | "Queue byte counter not updated properly (expected increase of %d, got increase of %d)" % (bytes, byte_diff)) |
Rich Lane | ae3428c | 2013-03-07 14:37:42 -0800 | [diff] [blame] | 1505 | |
Rich Lane | 4c504f3 | 2013-06-07 17:24:14 -0700 | [diff] [blame] | 1506 | def packet_in_match(msg, data, in_port=None, reason=None): |
| 1507 | """ |
| 1508 | Check whether the packet_in message 'msg' has fields matching 'data', |
| 1509 | 'in_port', and 'reason'. |
| 1510 | |
| 1511 | This function handles truncated packet_in data. The 'in_port' and 'reason' |
| 1512 | parameters are optional. |
| 1513 | |
| 1514 | @param msg packet_in message |
| 1515 | @param data Expected packet_in data |
| 1516 | @param in_port Expected packet_in in_port, or None |
| 1517 | @param reason Expected packet_in reason, or None |
| 1518 | """ |
| 1519 | |
Rich Lane | c0d26dd | 2013-07-10 12:46:03 -0700 | [diff] [blame] | 1520 | if ofp.OFP_VERSION <= 2: |
| 1521 | pkt_in_port = msg.in_port |
| 1522 | else: |
| 1523 | oxms = { type(oxm): oxm for oxm in msg.match.oxm_list } |
| 1524 | if ofp.oxm.in_port in oxms: |
| 1525 | pkt_in_port = oxms[ofp.oxm.in_port].value |
| 1526 | else: |
| 1527 | logging.warn("Missing in_port in packet-in message") |
| 1528 | pkt_in_port = None |
| 1529 | |
| 1530 | if in_port != None and in_port != pkt_in_port: |
Rich Lane | 9f2f17e | 2013-09-13 13:19:37 -0700 | [diff] [blame] | 1531 | logging.debug("Incorrect packet_in in_port (expected %d, received %d)", in_port, pkt_in_port) |
Rich Lane | 4c504f3 | 2013-06-07 17:24:14 -0700 | [diff] [blame] | 1532 | return False |
| 1533 | |
Rich Lane | c0d26dd | 2013-07-10 12:46:03 -0700 | [diff] [blame] | 1534 | if reason != None and reason != msg.reason: |
Rich Lane | 4c504f3 | 2013-06-07 17:24:14 -0700 | [diff] [blame] | 1535 | logging.debug("Incorrect packet_in reason (expected %d, received %d)", reason, msg.reason) |
| 1536 | return False |
| 1537 | |
| 1538 | # Check that one of the packets is a prefix of the other. |
| 1539 | # The received packet may be either truncated or padded, but not both. |
| 1540 | # (Some of the padding may be truncated but that's irrelevant). We |
| 1541 | # need to check that the smaller packet is a prefix of the larger one. |
| 1542 | # Note that this check succeeds if the switch sends a zero-length |
| 1543 | # packet-in. |
| 1544 | compare_len = min(len(msg.data), len(data)) |
| 1545 | if data[:compare_len] != msg.data[:compare_len]: |
| 1546 | logging.debug("Incorrect packet_in data") |
| 1547 | logging.debug("Expected %s" % format_packet(data[:compare_len])) |
| 1548 | logging.debug("Received %s" % format_packet(msg.data[:compare_len])) |
| 1549 | return False |
| 1550 | |
| 1551 | return True |
| 1552 | |
| 1553 | def verify_packet_in(test, data, in_port, reason, controller=None): |
| 1554 | """ |
| 1555 | Assert that the controller receives a packet_in message matching data 'data' |
| 1556 | from port 'in_port' with reason 'reason'. Does not trigger the packet_in |
| 1557 | itself, that's up to the test case. |
| 1558 | |
| 1559 | @param test Instance of base_tests.SimpleProtocol |
| 1560 | @param pkt String to expect as the packet_in data |
| 1561 | @param in_port OpenFlow port number to expect as the packet_in in_port |
| 1562 | @param reason One of OFPR_* to expect as the packet_in reason |
| 1563 | @param controller Controller instance, defaults to test.controller |
| 1564 | @returns The received packet-in message |
| 1565 | """ |
| 1566 | |
| 1567 | if controller == None: |
| 1568 | controller = test.controller |
| 1569 | |
| 1570 | end_time = time.time() + oftest.ofutils.default_timeout |
| 1571 | |
| 1572 | while True: |
| 1573 | msg, _ = controller.poll(ofp.OFPT_PACKET_IN, end_time - time.time()) |
| 1574 | if not msg: |
| 1575 | # Timeout |
| 1576 | break |
| 1577 | elif packet_in_match(msg, data, in_port, reason): |
| 1578 | # Found a matching message |
| 1579 | break |
| 1580 | |
Kiran Poola | 58c5c04 | 2014-05-15 15:11:06 -0700 | [diff] [blame^] | 1581 | test.assertTrue(msg is not None, 'Packet in message not received on port %r' % in_port) |
Rich Lane | 4c504f3 | 2013-06-07 17:24:14 -0700 | [diff] [blame] | 1582 | return msg |
| 1583 | |
| 1584 | def verify_no_packet_in(test, data, in_port, controller=None): |
| 1585 | """ |
| 1586 | Assert that the controller does not receive a packet_in message matching |
| 1587 | data 'data' from port 'in_port'. |
| 1588 | |
| 1589 | @param test Instance of base_tests.SimpleProtocol |
| 1590 | @param pkt String to expect as the packet_in data |
| 1591 | @param in_port OpenFlow port number to expect as the packet_in in_port |
| 1592 | @param controller Controller instance, defaults to test.controller |
| 1593 | """ |
| 1594 | |
| 1595 | if controller == None: |
| 1596 | controller = test.controller |
| 1597 | |
| 1598 | # Negative test, need to wait a short amount of time before checking we |
| 1599 | # didn't receive the message. |
Rich Lane | 48f6aed | 2014-03-23 15:51:02 -0700 | [diff] [blame] | 1600 | time.sleep(oftest.ofutils.default_negative_timeout) |
Rich Lane | 4c504f3 | 2013-06-07 17:24:14 -0700 | [diff] [blame] | 1601 | |
| 1602 | # Check every packet_in queued in the controller |
| 1603 | while True: |
| 1604 | msg, _ = controller.poll(ofp.OFPT_PACKET_IN, timeout=0) |
| 1605 | if msg == None: |
| 1606 | # No more queued packet_in messages |
| 1607 | break |
| 1608 | elif packet_in_match(msg, data, in_port, None): |
| 1609 | # Found a matching message |
| 1610 | break |
| 1611 | |
Rich Lane | 82c882d | 2013-08-09 17:13:52 -0700 | [diff] [blame] | 1612 | if in_port == None: |
| 1613 | test.assertTrue(msg == None, "Did not expect a packet-in message on any port") |
| 1614 | else: |
| 1615 | test.assertTrue(msg == None, "Did not expect a packet-in message on port %d" % in_port) |
Rich Lane | 4c504f3 | 2013-06-07 17:24:14 -0700 | [diff] [blame] | 1616 | |
Rich Lane | 045db07 | 2013-08-06 13:16:30 -0700 | [diff] [blame] | 1617 | def openflow_ports(num=None): |
| 1618 | """ |
| 1619 | Return a list of 'num' OpenFlow port numbers |
| 1620 | |
| 1621 | If 'num' is None, return all available ports. Otherwise, limit the length |
| 1622 | of the result to 'num' and raise an exception if not enough ports are |
| 1623 | available. |
| 1624 | """ |
| 1625 | ports = sorted(oftest.config["port_map"].keys()) |
| 1626 | if num != None and len(ports) < num: |
| 1627 | raise Exception("test requires %d ports but only %d are available" % (num, len(ports))) |
| 1628 | return ports[:num] |
| 1629 | |
Rich Lane | e4b384d | 2013-09-13 14:33:40 -0700 | [diff] [blame] | 1630 | def verify_packet(test, pkt, ofport): |
| 1631 | """ |
| 1632 | Check that an expected packet is received |
| 1633 | """ |
| 1634 | logging.debug("Checking for pkt on port %r", ofport) |
| 1635 | (rcv_port, rcv_pkt, pkt_time) = test.dataplane.poll(port_number=ofport, exp_pkt=str(pkt)) |
| 1636 | test.assertTrue(rcv_pkt != None, "Did not receive pkt on %r" % ofport) |
| 1637 | |
| 1638 | def verify_no_packet(test, pkt, ofport): |
| 1639 | """ |
| 1640 | Check that a particular packet is not received |
| 1641 | """ |
| 1642 | logging.debug("Negative check for pkt on port %r", ofport) |
Rich Lane | 48f6aed | 2014-03-23 15:51:02 -0700 | [diff] [blame] | 1643 | (rcv_port, rcv_pkt, pkt_time) = \ |
| 1644 | test.dataplane.poll( |
| 1645 | port_number=ofport, exp_pkt=str(pkt), |
| 1646 | timeout=oftest.ofutils.default_negative_timeout) |
Rich Lane | e4b384d | 2013-09-13 14:33:40 -0700 | [diff] [blame] | 1647 | test.assertTrue(rcv_pkt == None, "Received packet on %r" % ofport) |
| 1648 | |
| 1649 | def verify_no_other_packets(test): |
| 1650 | """ |
| 1651 | Check that no unexpected packets are received |
| 1652 | |
| 1653 | This is a no-op if the --relax option is in effect. |
| 1654 | """ |
| 1655 | if oftest.config["relax"]: |
| 1656 | return |
| 1657 | logging.debug("Checking for unexpected packets on all ports") |
Rich Lane | 48f6aed | 2014-03-23 15:51:02 -0700 | [diff] [blame] | 1658 | (rcv_port, rcv_pkt, pkt_time) = test.dataplane.poll(timeout=oftest.ofutils.default_negative_timeout) |
Rich Lane | e4b384d | 2013-09-13 14:33:40 -0700 | [diff] [blame] | 1659 | if rcv_pkt != None: |
| 1660 | logging.debug("Received unexpected packet on port %r: %s", rcv_port, format_packet(rcv_pkt)) |
| 1661 | test.assertTrue(rcv_pkt == None, "Unexpected packet on port %r" % rcv_port) |
| 1662 | |
| 1663 | def verify_packets(test, pkt, ofports): |
| 1664 | """ |
| 1665 | Check that a packet is received on certain ports |
| 1666 | |
| 1667 | Also verifies that the packet is not received on any other ports, and that no |
| 1668 | other packets are received (unless --relax is in effect). |
| 1669 | |
| 1670 | This covers the common and simplest cases for checking dataplane outputs. |
| 1671 | For more complex usage, like multiple different packets being output, or |
| 1672 | multiple packets on the same port, use the primitive verify_packet, |
| 1673 | verify_no_packet, and verify_no_other_packets functions directly. |
| 1674 | """ |
| 1675 | pkt = str(pkt) |
| 1676 | for ofport in openflow_ports(): |
| 1677 | if ofport in ofports: |
| 1678 | verify_packet(test, pkt, ofport) |
| 1679 | else: |
| 1680 | verify_no_packet(test, pkt, ofport) |
| 1681 | verify_no_other_packets(test) |
| 1682 | |
Rich Lane | 12d0459 | 2013-10-10 17:21:07 -0700 | [diff] [blame] | 1683 | def verify_no_errors(ctrl): |
| 1684 | error, _ = ctrl.poll(ofp.OFPT_ERROR, 0) |
| 1685 | if error: |
| 1686 | raise AssertionError("unexpected error type=%d code=%d" % (error.err_type, error.code)) |
Rich Lane | e4b384d | 2013-09-13 14:33:40 -0700 | [diff] [blame] | 1687 | |
Jonathan Stout | fcee314 | 2014-01-28 15:46:22 -0500 | [diff] [blame] | 1688 | def verify_capability(test, capability): |
| 1689 | """ |
Jonathan Stout | 073642d | 2014-02-04 13:41:48 -0500 | [diff] [blame] | 1690 | Return True if DUT supports the specified capability. |
Jonathan Stout | fcee314 | 2014-01-28 15:46:22 -0500 | [diff] [blame] | 1691 | |
| 1692 | @param test Instance of base_tests.SimpleProtocol |
| 1693 | @param capability One of ofp_capabilities. |
| 1694 | """ |
| 1695 | logging.info("Verifing that capability code is valid.") |
| 1696 | test.assertIn(capability, ofp.const.ofp_capabilities_map, |
| 1697 | "Capability code %d does not exist." % capability) |
| 1698 | capability_str = ofp.const.ofp_capabilities_map[capability] |
| 1699 | |
| 1700 | logging.info(("Sending features_request to test if capability " |
Jonathan Stout | 97e458a | 2014-01-28 16:08:04 -0500 | [diff] [blame] | 1701 | "%s is supported."), capability_str) |
Jonathan Stout | fcee314 | 2014-01-28 15:46:22 -0500 | [diff] [blame] | 1702 | req = ofp.message.features_request() |
| 1703 | res, raw = test.controller.transact(req) |
| 1704 | test.assertIsNotNone(res, "Did not receive a response from the DUT.") |
| 1705 | test.assertEqual(res.type, ofp.OFPT_FEATURES_REPLY, |
| 1706 | ("Unexpected packet type %d received in response to " |
| 1707 | "OFPT_FEATURES_REQUEST") % res.type) |
Jonathan Stout | 641167f | 2014-02-04 12:07:10 -0500 | [diff] [blame] | 1708 | logging.info("Received features_reply.") |
Jonathan Stout | fcee314 | 2014-01-28 15:46:22 -0500 | [diff] [blame] | 1709 | |
Jonathan Stout | 641167f | 2014-02-04 12:07:10 -0500 | [diff] [blame] | 1710 | if (res.capabilities & capability) > 0: |
| 1711 | logging.info("Switch capabilities bitmask claims to support %s", |
| 1712 | capability_str) |
| 1713 | return True, res.capabilities |
| 1714 | else: |
| 1715 | logging.info("Capabilities bitmask does not support %s.", |
| 1716 | capability_str) |
| 1717 | return False, res.capabilities |
Jonathan Stout | fcee314 | 2014-01-28 15:46:22 -0500 | [diff] [blame] | 1718 | |
Jonathan Stout | eb3721d | 2014-02-04 13:59:12 -0500 | [diff] [blame] | 1719 | def verify_configuration_flag(test, flag): |
| 1720 | """ |
| 1721 | Return True if DUT supports specified configuration flag. |
| 1722 | |
| 1723 | @param test Instance of base_tests.SimpleProtocol |
| 1724 | @param flag One of ofp_config_flags. |
Jonathan Stout | 1ec8c0f | 2014-02-04 15:25:38 -0500 | [diff] [blame] | 1725 | @returns (supported, flags) Bool if flag is set and flag values. |
Jonathan Stout | eb3721d | 2014-02-04 13:59:12 -0500 | [diff] [blame] | 1726 | """ |
| 1727 | logging.info("Verifing that flag is valid.") |
| 1728 | test.assertIn(flag, ofp.const.ofp_config_flags_map, |
| 1729 | "flag %s does not exist." % flag) |
| 1730 | flag_str = ofp.const.ofp_config_flags_map[flag] |
| 1731 | |
| 1732 | logging.info("Sending OFPT_GET_CONFIG_REQUEST.") |
| 1733 | req = ofp.message.get_config_request() |
| 1734 | rv = test.controller.message_send(req) |
| 1735 | test.assertNotEqual(rv, -1, "Not able to send get_config_request.") |
| 1736 | |
| 1737 | logging.info("Expecting OFPT_GET_CONFIG_REPLY ") |
| 1738 | (res, pkt) = test.controller.poll(exp_msg=ofp.OFPT_GET_CONFIG_REPLY, |
| 1739 | timeout=2) |
| 1740 | test.assertIsNotNone(res, "Did not receive OFPT_GET_CONFIG_REPLY") |
| 1741 | logging.info("Received OFPT_GET_CONFIG_REPLY ") |
| 1742 | |
| 1743 | if res.flags == flag: |
| 1744 | logging.info("%s flag is set.", flag_str) |
| 1745 | return True, res.flags |
| 1746 | else: |
| 1747 | logging.info("%s flag is not set.", flag_str) |
| 1748 | return False, res.flags |
| 1749 | |
Rich Lane | 7744e11 | 2013-01-11 17:23:57 -0800 | [diff] [blame] | 1750 | __all__ = list(set(locals()) - _import_blacklist) |