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