blob: f4c4cbf7eaf4896736c11587894a79c264605373 [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
Rich Laneb90a1c42012-10-05 09:16:05 -070010import oftest.base_tests as base_tests
Ed Swierk76cce912012-07-11 18:59:34 -070011
Rich Laneda3b5ad2012-10-03 09:05:32 -070012from oftest.testutils import *
Ed Swierk76cce912012-07-11 18:59:34 -070013
Ed Swierk76cce912012-07-11 18:59:34 -070014def normal_ip_mask(index):
15 """
16 Return the IP mask for the given wildcard index 0 - 63 per the OF 1.0 spec
17 """
18 if index < 32:
19 return ((1 << 32) - 1) ^ ((1 << index) - 1)
20 else:
21 return 0
22
23def fancy_ip_mask(index):
24 """
25 Return the IP mask for the given wildcard index 0 - 31 per the OF 1.0 spec.
26 For wildcard index 32 - 63, return a "negative" IP mask:
27 32 : wildcard the first bit, mask 127.255.255.255
28 33 : wildcard all first 2 bits, mask 63.255.255.255
29 ...
30 62 : wildcard all but last bit, mask 0.0.0.1
31 63 : wildcard all bits, mask 0.0.0.0
32 """
33 if index < 32:
34 return ((1 << 32) - 1) ^ ((1 << index) - 1)
35 else:
36 return (1 << (63 - index)) - 1
37
Rich Lane0a4f6372013-01-02 14:40:22 -080038@nonstandard
Rich Laneb90a1c42012-10-05 09:16:05 -070039class BSNConfigIPMask(base_tests.SimpleDataPlane):
Ed Swierk76cce912012-07-11 18:59:34 -070040 """
41 Exercise BSN vendor extension for configuring IP source/dest match mask
42 """
Rich Laned1d9c282012-10-04 22:07:10 -070043
Ed Swierk76cce912012-07-11 18:59:34 -070044 def bsn_set_ip_mask(self, index, mask):
45 """
46 Use the BSN_SET_IP_MASK vendor command to change the IP mask for the
47 given wildcard index
48 """
Rich Lane9a003812012-10-04 17:17:59 -070049 logging.info("Setting index %d to mask is %s" % (index, mask))
Rich Lane4b601452013-03-11 23:37:06 -070050 m = ofp.message.bsn_set_ip_mask(index=index, mask=mask)
Rich Lane5c3151c2013-01-03 17:15:41 -080051 self.controller.message_send(m)
Ed Swierk76cce912012-07-11 18:59:34 -070052
53 def bsn_get_ip_mask(self, index):
54 """
Ed Swierkaba42582012-09-14 06:40:49 -070055 Use the BSN_GET_IP_MASK_REQUEST vendor command to get the current IP mask
56 for the given wildcard index
Ed Swierk76cce912012-07-11 18:59:34 -070057 """
Rich Lane4b601452013-03-11 23:37:06 -070058 request = ofp.message.bsn_get_ip_mask_request(index=index)
59 reply, _ = self.controller.transact(request)
60 self.assertTrue(isinstance(reply, ofp.message.bsn_get_ip_mask_reply), "Wrong reply type")
61 self.assertEqual(reply.index, index, "Wrong index")
62 return reply.mask
Ed Swierk76cce912012-07-11 18:59:34 -070063
64 def runTest(self):
Ed Swierk99a74de2012-08-22 06:40:54 -070065 self.assertFalse(required_wildcards(self) & ofp.OFPFW_NW_DST_ALL,
66 "IP dst must be wildcarded")
67 self.assertFalse(required_wildcards(self) & ofp.OFPFW_NW_SRC_ALL,
68 "IP src must be wildcarded")
Ed Swierk76cce912012-07-11 18:59:34 -070069 for index in range(0, 64):
70 mask = self.bsn_get_ip_mask(index)
Rich Lane9a003812012-10-04 17:17:59 -070071 logging.info("Index %d mask is %s" %
Ed Swierk76cce912012-07-11 18:59:34 -070072 (index, scapy.utils.ltoa(mask)))
73 self.assertEqual(mask, normal_ip_mask(index), "Unexpected IP mask")
74
75 for index in range(0, 64):
76 mask = normal_ip_mask(index)
77 if mask == 0:
Rich Lane9a003812012-10-04 17:17:59 -070078 logging.info("Skipping IP wildcard index %d" % index)
Ed Swierk76cce912012-07-11 18:59:34 -070079 else:
Rich Lane9a003812012-10-04 17:17:59 -070080 logging.info("Testing IP wildcard index %d" % index)
Ed Swierk76cce912012-07-11 18:59:34 -070081 self.check_ip_mask(True, index, mask)
82 self.check_ip_mask(False, index, mask)
83
Rich Lane9a003812012-10-04 17:17:59 -070084 logging.info("Setting fancy IP masks")
Ed Swierk76cce912012-07-11 18:59:34 -070085 for index in range(0, 64):
86 self.bsn_set_ip_mask(index, fancy_ip_mask(index))
87 for index in range(0, 64):
88 mask = self.bsn_get_ip_mask(index)
Rich Lane9a003812012-10-04 17:17:59 -070089 logging.info("Index %d mask is %s" %
Ed Swierk76cce912012-07-11 18:59:34 -070090 (index, scapy.utils.ltoa(mask)))
91 self.assertEqual(mask, fancy_ip_mask(index), "Unexpected IP mask")
92
93 for index in range(0, 64):
94 mask = fancy_ip_mask(index)
95 if mask == 0:
Rich Lane9a003812012-10-04 17:17:59 -070096 logging.info("Skipping IP wildcard index %d" % index)
Ed Swierk76cce912012-07-11 18:59:34 -070097 else:
Rich Lane9a003812012-10-04 17:17:59 -070098 logging.info("Testing IP wildcard index %d" % index)
Ed Swierk76cce912012-07-11 18:59:34 -070099 self.check_ip_mask(True, index, mask)
100 self.check_ip_mask(False, index, mask)
101
102 def check_ip_mask(self, source, index, mask):
Rich Lane477f4812012-10-04 22:49:00 -0700103 ports = config["port_map"].keys()
Ed Swierk76cce912012-07-11 18:59:34 -0700104
105 # For each mask we install two flow entries, one which matches
106 # on IP source or dest addr all-0s (modulo the mask) and
107 # outputs to port 1, the other which matches on all-1s (modulo
108 # the mask) and outputs to port 2.
109
110 # Then we construct four packets: The first two are the same
111 # as the two flow entry matches (all 0s and all 1s), and we
112 # check that the packets go to ports 1 and 2, respectively.
113 # For the second set of packets, we flip the un-masked bits
114 # and check that only the masked bits are matched.
115
116 ip0 = scapy.utils.ltoa(0x00000000)
117 ip1 = scapy.utils.ltoa(0xffffffff)
118 ip2 = scapy.utils.ltoa(0xffffffff ^ mask)
119 ip3 = scapy.utils.ltoa(0x00000000 ^ mask)
120
121 if source:
122 wildcards = ((ofp.OFPFW_ALL ^ ofp.OFPFW_DL_TYPE ^ ofp.OFPFW_NW_SRC_MASK)
123 | (index << ofp.OFPFW_NW_SRC_SHIFT))
124 pkt0 = simple_tcp_packet(ip_src=ip0)
125 pkt1 = simple_tcp_packet(ip_src=ip1)
126 pkt2 = simple_tcp_packet(ip_src=ip2)
127 pkt3 = simple_tcp_packet(ip_src=ip3)
Rich Lane9a003812012-10-04 17:17:59 -0700128 msg = lambda ip: logging.info("Testing source IP %s" % ip)
Ed Swierk76cce912012-07-11 18:59:34 -0700129 else:
130 wildcards = ((ofp.OFPFW_ALL ^ ofp.OFPFW_DL_TYPE ^ ofp.OFPFW_NW_DST_MASK)
131 | (index << ofp.OFPFW_NW_DST_SHIFT))
132 pkt0 = simple_tcp_packet(ip_dst=ip0)
133 pkt1 = simple_tcp_packet(ip_dst=ip1)
134 pkt2 = simple_tcp_packet(ip_dst=ip2)
135 pkt3 = simple_tcp_packet(ip_dst=ip3)
Rich Lane9a003812012-10-04 17:17:59 -0700136 msg = lambda ip: logging.info("Testing dest IP %s" % ip)
Ed Swierk76cce912012-07-11 18:59:34 -0700137
Rich Lane32bf9482013-01-03 17:26:30 -0800138 delete_all_flows(self.controller)
Ed Swierk76cce912012-07-11 18:59:34 -0700139
Rich Lane5c3151c2013-01-03 17:15:41 -0800140 self.controller.message_send(flow_msg_create(
Ed Swierk76cce912012-07-11 18:59:34 -0700141 self, pkt0, ing_port=ports[0], egr_ports=[ports[1]],
142 wildcards=wildcards))
Rich Lane5c3151c2013-01-03 17:15:41 -0800143 self.controller.message_send(flow_msg_create(
Ed Swierk76cce912012-07-11 18:59:34 -0700144 self, pkt1, ing_port=ports[0], egr_ports=[ports[2]],
145 wildcards=wildcards))
Ed Swierk76cce912012-07-11 18:59:34 -0700146
Rich Lane3a261d52013-01-03 17:45:08 -0800147 do_barrier(self.controller)
Ed Swierk76cce912012-07-11 18:59:34 -0700148
149 msg(ip0)
150 self.dataplane.send(ports[0], str(pkt0))
Rich Lanee4b384d2013-09-13 14:33:40 -0700151 verify_packets(self, str(pkt0), [ports[1]])
Ed Swierk76cce912012-07-11 18:59:34 -0700152
153 msg(ip1)
154 self.dataplane.send(ports[0], str(pkt1))
Rich Lanee4b384d2013-09-13 14:33:40 -0700155 verify_packets(self, str(pkt1), [ports[2]])
Ed Swierk76cce912012-07-11 18:59:34 -0700156
157 msg(ip2)
158 self.dataplane.send(ports[0], str(pkt2))
Rich Lanee4b384d2013-09-13 14:33:40 -0700159 verify_packets(self, str(pkt2), [ports[1]])
Ed Swierk76cce912012-07-11 18:59:34 -0700160
161 msg(ip3)
162 self.dataplane.send(ports[0], str(pkt3))
Rich Lanee4b384d2013-09-13 14:33:40 -0700163 verify_packets(self, str(pkt3), [ports[2]])