blob: b26fe3c9cefb87bb52671d96824cca37d2f793da [file] [log] [blame]
Ed Swierk76cce912012-07-11 18:59:34 -07001"""
2"""
3import struct
Ed Swierk76cce912012-07-11 18:59:34 -07004import logging
Rich Lane3c7cf7f2013-01-11 18:04:56 -08005import scapy
Ed Swierk76cce912012-07-11 18:59:34 -07006
Rich Lane477f4812012-10-04 22:49:00 -07007from oftest import config
Ed Swierk76cce912012-07-11 18:59:34 -07008import oftest.controller as controller
Rich Laned7b0ffa2013-03-08 15:53:42 -08009import ofp
Ed Swierk76cce912012-07-11 18:59:34 -070010import oftest.message as message
Rich Laneb90a1c42012-10-05 09:16:05 -070011import oftest.base_tests as base_tests
Ed Swierk76cce912012-07-11 18:59:34 -070012
Rich Laneda3b5ad2012-10-03 09:05:32 -070013from oftest.testutils import *
Ed Swierk76cce912012-07-11 18:59:34 -070014
Ed Swierk76cce912012-07-11 18:59:34 -070015def normal_ip_mask(index):
16 """
17 Return the IP mask for the given wildcard index 0 - 63 per the OF 1.0 spec
18 """
19 if index < 32:
20 return ((1 << 32) - 1) ^ ((1 << index) - 1)
21 else:
22 return 0
23
24def fancy_ip_mask(index):
25 """
26 Return the IP mask for the given wildcard index 0 - 31 per the OF 1.0 spec.
27 For wildcard index 32 - 63, return a "negative" IP mask:
28 32 : wildcard the first bit, mask 127.255.255.255
29 33 : wildcard all first 2 bits, mask 63.255.255.255
30 ...
31 62 : wildcard all but last bit, mask 0.0.0.1
32 63 : wildcard all bits, mask 0.0.0.0
33 """
34 if index < 32:
35 return ((1 << 32) - 1) ^ ((1 << index) - 1)
36 else:
37 return (1 << (63 - index)) - 1
38
Rich Lane0a4f6372013-01-02 14:40:22 -080039@nonstandard
Rich Laneb90a1c42012-10-05 09:16:05 -070040class BSNConfigIPMask(base_tests.SimpleDataPlane):
Ed Swierk76cce912012-07-11 18:59:34 -070041 """
42 Exercise BSN vendor extension for configuring IP source/dest match mask
43 """
Rich Laned1d9c282012-10-04 22:07:10 -070044
Ed Swierk76cce912012-07-11 18:59:34 -070045 def bsn_set_ip_mask(self, index, mask):
46 """
47 Use the BSN_SET_IP_MASK vendor command to change the IP mask for the
48 given wildcard index
49 """
Rich Lane9a003812012-10-04 17:17:59 -070050 logging.info("Setting index %d to mask is %s" % (index, mask))
Ed Swierk76cce912012-07-11 18:59:34 -070051 m = message.vendor()
52 m.vendor = 0x005c16c7
53 m.data = struct.pack("!LBBBBL", 0, index, 0, 0, 0, mask)
Rich Lane5c3151c2013-01-03 17:15:41 -080054 self.controller.message_send(m)
Ed Swierk76cce912012-07-11 18:59:34 -070055
56 def bsn_get_ip_mask(self, index):
57 """
Ed Swierkaba42582012-09-14 06:40:49 -070058 Use the BSN_GET_IP_MASK_REQUEST vendor command to get the current IP mask
59 for the given wildcard index
Ed Swierk76cce912012-07-11 18:59:34 -070060 """
61 m = message.vendor()
62 m.vendor = 0x005c16c7
63 m.data = struct.pack( "!LBBBBL", 1, index, 0, 0, 0, 0 )
Rich Lane5c3151c2013-01-03 17:15:41 -080064 self.controller.message_send(m)
Dan Talaycoc689a792012-09-28 14:22:53 -070065 m, r = self.controller.poll(ofp.OFPT_VENDOR)
Ed Swierk76cce912012-07-11 18:59:34 -070066 self.assertEqual(m.vendor, 0x005c16c7, "Wrong vendor ID")
67 x = struct.unpack("!LBBBBL", m.data)
Ed Swierkaba42582012-09-14 06:40:49 -070068 self.assertEqual(x[0], 2, "Wrong subtype")
Ed Swierk76cce912012-07-11 18:59:34 -070069 self.assertEqual(x[1], index, "Wrong index")
70 return x[5]
71
72 def runTest(self):
Ed Swierk99a74de2012-08-22 06:40:54 -070073 self.assertFalse(required_wildcards(self) & ofp.OFPFW_NW_DST_ALL,
74 "IP dst must be wildcarded")
75 self.assertFalse(required_wildcards(self) & ofp.OFPFW_NW_SRC_ALL,
76 "IP src must be wildcarded")
Ed Swierk76cce912012-07-11 18:59:34 -070077 for index in range(0, 64):
78 mask = self.bsn_get_ip_mask(index)
Rich Lane9a003812012-10-04 17:17:59 -070079 logging.info("Index %d mask is %s" %
Ed Swierk76cce912012-07-11 18:59:34 -070080 (index, scapy.utils.ltoa(mask)))
81 self.assertEqual(mask, normal_ip_mask(index), "Unexpected IP mask")
82
83 for index in range(0, 64):
84 mask = normal_ip_mask(index)
85 if mask == 0:
Rich Lane9a003812012-10-04 17:17:59 -070086 logging.info("Skipping IP wildcard index %d" % index)
Ed Swierk76cce912012-07-11 18:59:34 -070087 else:
Rich Lane9a003812012-10-04 17:17:59 -070088 logging.info("Testing IP wildcard index %d" % index)
Ed Swierk76cce912012-07-11 18:59:34 -070089 self.check_ip_mask(True, index, mask)
90 self.check_ip_mask(False, index, mask)
91
Rich Lane9a003812012-10-04 17:17:59 -070092 logging.info("Setting fancy IP masks")
Ed Swierk76cce912012-07-11 18:59:34 -070093 for index in range(0, 64):
94 self.bsn_set_ip_mask(index, fancy_ip_mask(index))
95 for index in range(0, 64):
96 mask = self.bsn_get_ip_mask(index)
Rich Lane9a003812012-10-04 17:17:59 -070097 logging.info("Index %d mask is %s" %
Ed Swierk76cce912012-07-11 18:59:34 -070098 (index, scapy.utils.ltoa(mask)))
99 self.assertEqual(mask, fancy_ip_mask(index), "Unexpected IP mask")
100
101 for index in range(0, 64):
102 mask = fancy_ip_mask(index)
103 if mask == 0:
Rich Lane9a003812012-10-04 17:17:59 -0700104 logging.info("Skipping IP wildcard index %d" % index)
Ed Swierk76cce912012-07-11 18:59:34 -0700105 else:
Rich Lane9a003812012-10-04 17:17:59 -0700106 logging.info("Testing IP wildcard index %d" % index)
Ed Swierk76cce912012-07-11 18:59:34 -0700107 self.check_ip_mask(True, index, mask)
108 self.check_ip_mask(False, index, mask)
109
110 def check_ip_mask(self, source, index, mask):
Rich Lane477f4812012-10-04 22:49:00 -0700111 ports = config["port_map"].keys()
Ed Swierk76cce912012-07-11 18:59:34 -0700112
113 # For each mask we install two flow entries, one which matches
114 # on IP source or dest addr all-0s (modulo the mask) and
115 # outputs to port 1, the other which matches on all-1s (modulo
116 # the mask) and outputs to port 2.
117
118 # Then we construct four packets: The first two are the same
119 # as the two flow entry matches (all 0s and all 1s), and we
120 # check that the packets go to ports 1 and 2, respectively.
121 # For the second set of packets, we flip the un-masked bits
122 # and check that only the masked bits are matched.
123
124 ip0 = scapy.utils.ltoa(0x00000000)
125 ip1 = scapy.utils.ltoa(0xffffffff)
126 ip2 = scapy.utils.ltoa(0xffffffff ^ mask)
127 ip3 = scapy.utils.ltoa(0x00000000 ^ mask)
128
129 if source:
130 wildcards = ((ofp.OFPFW_ALL ^ ofp.OFPFW_DL_TYPE ^ ofp.OFPFW_NW_SRC_MASK)
131 | (index << ofp.OFPFW_NW_SRC_SHIFT))
132 pkt0 = simple_tcp_packet(ip_src=ip0)
133 pkt1 = simple_tcp_packet(ip_src=ip1)
134 pkt2 = simple_tcp_packet(ip_src=ip2)
135 pkt3 = simple_tcp_packet(ip_src=ip3)
Rich Lane9a003812012-10-04 17:17:59 -0700136 msg = lambda ip: logging.info("Testing source IP %s" % ip)
Ed Swierk76cce912012-07-11 18:59:34 -0700137 else:
138 wildcards = ((ofp.OFPFW_ALL ^ ofp.OFPFW_DL_TYPE ^ ofp.OFPFW_NW_DST_MASK)
139 | (index << ofp.OFPFW_NW_DST_SHIFT))
140 pkt0 = simple_tcp_packet(ip_dst=ip0)
141 pkt1 = simple_tcp_packet(ip_dst=ip1)
142 pkt2 = simple_tcp_packet(ip_dst=ip2)
143 pkt3 = simple_tcp_packet(ip_dst=ip3)
Rich Lane9a003812012-10-04 17:17:59 -0700144 msg = lambda ip: logging.info("Testing dest IP %s" % ip)
Ed Swierk76cce912012-07-11 18:59:34 -0700145
Rich Lane32bf9482013-01-03 17:26:30 -0800146 delete_all_flows(self.controller)
Ed Swierk76cce912012-07-11 18:59:34 -0700147
Rich Lane5c3151c2013-01-03 17:15:41 -0800148 self.controller.message_send(flow_msg_create(
Ed Swierk76cce912012-07-11 18:59:34 -0700149 self, pkt0, ing_port=ports[0], egr_ports=[ports[1]],
150 wildcards=wildcards))
Rich Lane5c3151c2013-01-03 17:15:41 -0800151 self.controller.message_send(flow_msg_create(
Ed Swierk76cce912012-07-11 18:59:34 -0700152 self, pkt1, ing_port=ports[0], egr_ports=[ports[2]],
153 wildcards=wildcards))
Ed Swierk76cce912012-07-11 18:59:34 -0700154
Rich Lane3a261d52013-01-03 17:45:08 -0800155 do_barrier(self.controller)
Ed Swierk76cce912012-07-11 18:59:34 -0700156
157 msg(ip0)
158 self.dataplane.send(ports[0], str(pkt0))
159 receive_pkt_verify(self, [ports[1]], pkt0, ports[0])
160
161 msg(ip1)
162 self.dataplane.send(ports[0], str(pkt1))
163 receive_pkt_verify(self, [ports[2]], pkt1, ports[0])
164
165 msg(ip2)
166 self.dataplane.send(ports[0], str(pkt2))
167 receive_pkt_verify(self, [ports[1]], pkt2, ports[0])
168
169 msg(ip3)
170 self.dataplane.send(ports[0], str(pkt3))
171 receive_pkt_verify(self, [ports[2]], pkt3, ports[0])