Ed Swierk | 76cce91 | 2012-07-11 18:59:34 -0700 | [diff] [blame] | 1 | """ |
| 2 | """ |
| 3 | import struct |
| 4 | |
| 5 | import logging |
| 6 | |
Rich Lane | 477f481 | 2012-10-04 22:49:00 -0700 | [diff] [blame] | 7 | from oftest import config |
Ed Swierk | 76cce91 | 2012-07-11 18:59:34 -0700 | [diff] [blame] | 8 | import oftest.controller as controller |
| 9 | import oftest.cstruct as ofp |
| 10 | import oftest.message as message |
Rich Lane | b90a1c4 | 2012-10-05 09:16:05 -0700 | [diff] [blame] | 11 | import oftest.base_tests as base_tests |
Ed Swierk | 76cce91 | 2012-07-11 18:59:34 -0700 | [diff] [blame] | 12 | |
Rich Lane | da3b5ad | 2012-10-03 09:05:32 -0700 | [diff] [blame] | 13 | from oftest.testutils import * |
Ed Swierk | 76cce91 | 2012-07-11 18:59:34 -0700 | [diff] [blame] | 14 | |
Ed Swierk | 76cce91 | 2012-07-11 18:59:34 -0700 | [diff] [blame] | 15 | def 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 | |
| 24 | def 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 Lane | b90a1c4 | 2012-10-05 09:16:05 -0700 | [diff] [blame] | 39 | class BSNConfigIPMask(base_tests.SimpleDataPlane): |
Ed Swierk | 76cce91 | 2012-07-11 18:59:34 -0700 | [diff] [blame] | 40 | """ |
| 41 | Exercise BSN vendor extension for configuring IP source/dest match mask |
| 42 | """ |
Rich Lane | d1d9c28 | 2012-10-04 22:07:10 -0700 | [diff] [blame] | 43 | |
| 44 | priority = -1 |
| 45 | |
Ed Swierk | 76cce91 | 2012-07-11 18:59:34 -0700 | [diff] [blame] | 46 | def bsn_set_ip_mask(self, index, mask): |
| 47 | """ |
| 48 | Use the BSN_SET_IP_MASK vendor command to change the IP mask for the |
| 49 | given wildcard index |
| 50 | """ |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 51 | logging.info("Setting index %d to mask is %s" % (index, mask)) |
Ed Swierk | 76cce91 | 2012-07-11 18:59:34 -0700 | [diff] [blame] | 52 | m = message.vendor() |
| 53 | m.vendor = 0x005c16c7 |
| 54 | m.data = struct.pack("!LBBBBL", 0, index, 0, 0, 0, mask) |
Rich Lane | 5c3151c | 2013-01-03 17:15:41 -0800 | [diff] [blame] | 55 | self.controller.message_send(m) |
Ed Swierk | 76cce91 | 2012-07-11 18:59:34 -0700 | [diff] [blame] | 56 | |
| 57 | def bsn_get_ip_mask(self, index): |
| 58 | """ |
Ed Swierk | aba4258 | 2012-09-14 06:40:49 -0700 | [diff] [blame] | 59 | Use the BSN_GET_IP_MASK_REQUEST vendor command to get the current IP mask |
| 60 | for the given wildcard index |
Ed Swierk | 76cce91 | 2012-07-11 18:59:34 -0700 | [diff] [blame] | 61 | """ |
| 62 | m = message.vendor() |
| 63 | m.vendor = 0x005c16c7 |
| 64 | m.data = struct.pack( "!LBBBBL", 1, index, 0, 0, 0, 0 ) |
Rich Lane | 5c3151c | 2013-01-03 17:15:41 -0800 | [diff] [blame] | 65 | self.controller.message_send(m) |
Dan Talayco | c689a79 | 2012-09-28 14:22:53 -0700 | [diff] [blame] | 66 | m, r = self.controller.poll(ofp.OFPT_VENDOR) |
Ed Swierk | 76cce91 | 2012-07-11 18:59:34 -0700 | [diff] [blame] | 67 | self.assertEqual(m.vendor, 0x005c16c7, "Wrong vendor ID") |
| 68 | x = struct.unpack("!LBBBBL", m.data) |
Ed Swierk | aba4258 | 2012-09-14 06:40:49 -0700 | [diff] [blame] | 69 | self.assertEqual(x[0], 2, "Wrong subtype") |
Ed Swierk | 76cce91 | 2012-07-11 18:59:34 -0700 | [diff] [blame] | 70 | self.assertEqual(x[1], index, "Wrong index") |
| 71 | return x[5] |
| 72 | |
| 73 | def runTest(self): |
Ed Swierk | 99a74de | 2012-08-22 06:40:54 -0700 | [diff] [blame] | 74 | self.assertFalse(required_wildcards(self) & ofp.OFPFW_NW_DST_ALL, |
| 75 | "IP dst must be wildcarded") |
| 76 | self.assertFalse(required_wildcards(self) & ofp.OFPFW_NW_SRC_ALL, |
| 77 | "IP src must be wildcarded") |
Ed Swierk | 76cce91 | 2012-07-11 18:59:34 -0700 | [diff] [blame] | 78 | for index in range(0, 64): |
| 79 | mask = self.bsn_get_ip_mask(index) |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 80 | logging.info("Index %d mask is %s" % |
Ed Swierk | 76cce91 | 2012-07-11 18:59:34 -0700 | [diff] [blame] | 81 | (index, scapy.utils.ltoa(mask))) |
| 82 | self.assertEqual(mask, normal_ip_mask(index), "Unexpected IP mask") |
| 83 | |
| 84 | for index in range(0, 64): |
| 85 | mask = normal_ip_mask(index) |
| 86 | if mask == 0: |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 87 | logging.info("Skipping IP wildcard index %d" % index) |
Ed Swierk | 76cce91 | 2012-07-11 18:59:34 -0700 | [diff] [blame] | 88 | else: |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 89 | logging.info("Testing IP wildcard index %d" % index) |
Ed Swierk | 76cce91 | 2012-07-11 18:59:34 -0700 | [diff] [blame] | 90 | self.check_ip_mask(True, index, mask) |
| 91 | self.check_ip_mask(False, index, mask) |
| 92 | |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 93 | logging.info("Setting fancy IP masks") |
Ed Swierk | 76cce91 | 2012-07-11 18:59:34 -0700 | [diff] [blame] | 94 | for index in range(0, 64): |
| 95 | self.bsn_set_ip_mask(index, fancy_ip_mask(index)) |
| 96 | for index in range(0, 64): |
| 97 | mask = self.bsn_get_ip_mask(index) |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 98 | logging.info("Index %d mask is %s" % |
Ed Swierk | 76cce91 | 2012-07-11 18:59:34 -0700 | [diff] [blame] | 99 | (index, scapy.utils.ltoa(mask))) |
| 100 | self.assertEqual(mask, fancy_ip_mask(index), "Unexpected IP mask") |
| 101 | |
| 102 | for index in range(0, 64): |
| 103 | mask = fancy_ip_mask(index) |
| 104 | if mask == 0: |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 105 | logging.info("Skipping IP wildcard index %d" % index) |
Ed Swierk | 76cce91 | 2012-07-11 18:59:34 -0700 | [diff] [blame] | 106 | else: |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 107 | logging.info("Testing IP wildcard index %d" % index) |
Ed Swierk | 76cce91 | 2012-07-11 18:59:34 -0700 | [diff] [blame] | 108 | self.check_ip_mask(True, index, mask) |
| 109 | self.check_ip_mask(False, index, mask) |
| 110 | |
| 111 | def check_ip_mask(self, source, index, mask): |
Rich Lane | 477f481 | 2012-10-04 22:49:00 -0700 | [diff] [blame] | 112 | ports = config["port_map"].keys() |
Ed Swierk | 76cce91 | 2012-07-11 18:59:34 -0700 | [diff] [blame] | 113 | |
| 114 | # For each mask we install two flow entries, one which matches |
| 115 | # on IP source or dest addr all-0s (modulo the mask) and |
| 116 | # outputs to port 1, the other which matches on all-1s (modulo |
| 117 | # the mask) and outputs to port 2. |
| 118 | |
| 119 | # Then we construct four packets: The first two are the same |
| 120 | # as the two flow entry matches (all 0s and all 1s), and we |
| 121 | # check that the packets go to ports 1 and 2, respectively. |
| 122 | # For the second set of packets, we flip the un-masked bits |
| 123 | # and check that only the masked bits are matched. |
| 124 | |
| 125 | ip0 = scapy.utils.ltoa(0x00000000) |
| 126 | ip1 = scapy.utils.ltoa(0xffffffff) |
| 127 | ip2 = scapy.utils.ltoa(0xffffffff ^ mask) |
| 128 | ip3 = scapy.utils.ltoa(0x00000000 ^ mask) |
| 129 | |
| 130 | if source: |
| 131 | wildcards = ((ofp.OFPFW_ALL ^ ofp.OFPFW_DL_TYPE ^ ofp.OFPFW_NW_SRC_MASK) |
| 132 | | (index << ofp.OFPFW_NW_SRC_SHIFT)) |
| 133 | pkt0 = simple_tcp_packet(ip_src=ip0) |
| 134 | pkt1 = simple_tcp_packet(ip_src=ip1) |
| 135 | pkt2 = simple_tcp_packet(ip_src=ip2) |
| 136 | pkt3 = simple_tcp_packet(ip_src=ip3) |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 137 | msg = lambda ip: logging.info("Testing source IP %s" % ip) |
Ed Swierk | 76cce91 | 2012-07-11 18:59:34 -0700 | [diff] [blame] | 138 | else: |
| 139 | wildcards = ((ofp.OFPFW_ALL ^ ofp.OFPFW_DL_TYPE ^ ofp.OFPFW_NW_DST_MASK) |
| 140 | | (index << ofp.OFPFW_NW_DST_SHIFT)) |
| 141 | pkt0 = simple_tcp_packet(ip_dst=ip0) |
| 142 | pkt1 = simple_tcp_packet(ip_dst=ip1) |
| 143 | pkt2 = simple_tcp_packet(ip_dst=ip2) |
| 144 | pkt3 = simple_tcp_packet(ip_dst=ip3) |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 145 | msg = lambda ip: logging.info("Testing dest IP %s" % ip) |
Ed Swierk | 76cce91 | 2012-07-11 18:59:34 -0700 | [diff] [blame] | 146 | |
Rich Lane | 32bf948 | 2013-01-03 17:26:30 -0800 | [diff] [blame^] | 147 | delete_all_flows(self.controller) |
Ed Swierk | 76cce91 | 2012-07-11 18:59:34 -0700 | [diff] [blame] | 148 | |
Rich Lane | 5c3151c | 2013-01-03 17:15:41 -0800 | [diff] [blame] | 149 | self.controller.message_send(flow_msg_create( |
Ed Swierk | 76cce91 | 2012-07-11 18:59:34 -0700 | [diff] [blame] | 150 | self, pkt0, ing_port=ports[0], egr_ports=[ports[1]], |
| 151 | wildcards=wildcards)) |
Rich Lane | 5c3151c | 2013-01-03 17:15:41 -0800 | [diff] [blame] | 152 | self.controller.message_send(flow_msg_create( |
Ed Swierk | 76cce91 | 2012-07-11 18:59:34 -0700 | [diff] [blame] | 153 | self, pkt1, ing_port=ports[0], egr_ports=[ports[2]], |
| 154 | wildcards=wildcards)) |
Ed Swierk | 76cce91 | 2012-07-11 18:59:34 -0700 | [diff] [blame] | 155 | |
| 156 | self.assertEqual(do_barrier(self.controller), 0, "Barrier failed") |
| 157 | |
| 158 | msg(ip0) |
| 159 | self.dataplane.send(ports[0], str(pkt0)) |
| 160 | receive_pkt_verify(self, [ports[1]], pkt0, ports[0]) |
| 161 | |
| 162 | msg(ip1) |
| 163 | self.dataplane.send(ports[0], str(pkt1)) |
| 164 | receive_pkt_verify(self, [ports[2]], pkt1, ports[0]) |
| 165 | |
| 166 | msg(ip2) |
| 167 | self.dataplane.send(ports[0], str(pkt2)) |
| 168 | receive_pkt_verify(self, [ports[1]], pkt2, ports[0]) |
| 169 | |
| 170 | msg(ip3) |
| 171 | self.dataplane.send(ports[0], str(pkt3)) |
| 172 | receive_pkt_verify(self, [ports[2]], pkt3, ports[0]) |