Howard Persh | c796358 | 2012-03-29 10:02:59 -0700 | [diff] [blame] | 1 | """ |
| 2 | Flow query test case. |
| 3 | |
Howard Persh | 3340d45 | 2012-04-06 16:45:21 -0700 | [diff] [blame] | 4 | Attempts to fill switch to capacity with randomized flows, and ensure that |
| 5 | they all are read back correctly. |
Howard Persh | c796358 | 2012-03-29 10:02:59 -0700 | [diff] [blame] | 6 | """ |
Howard Persh | 07d99e6 | 2012-04-09 15:26:57 -0700 | [diff] [blame] | 7 | |
| 8 | # COMMON TEST PARAMETERS |
| 9 | # |
| 10 | # Name: wildcards |
| 11 | # Type: number |
| 12 | # Description: |
| 13 | # Overrides bitmap of supported wildcards reported by switch |
| 14 | # Default: none |
| 15 | # |
Howard Persh | c1199d5 | 2012-04-11 14:21:32 -0700 | [diff] [blame] | 16 | # Name: wildcards_force |
| 17 | # Type: number |
| 18 | # Description: |
| 19 | # Bitmap of wildcards to always be set |
| 20 | # Default: none |
| 21 | # |
Howard Persh | 07d99e6 | 2012-04-09 15:26:57 -0700 | [diff] [blame] | 22 | # Name: actions |
| 23 | # Type: number |
| 24 | # Description: |
| 25 | # Overrides bitmap of supported actions reported by switch |
| 26 | # Default: none |
| 27 | # |
Howard Persh | c1199d5 | 2012-04-11 14:21:32 -0700 | [diff] [blame] | 28 | # Name: actions_force |
| 29 | # Type: number |
| 30 | # Description: |
| 31 | # Bitmap of actions to always be used |
| 32 | # Default: none |
| 33 | # |
| 34 | # Name: ports |
| 35 | # Type: list of OF port numbers |
| 36 | # Description: |
| 37 | # Override list of OF port numbers reported by switch |
| 38 | # Default: none |
| 39 | # |
Howard Persh | 8d21c1f | 2012-04-20 15:57:29 -0700 | [diff] [blame] | 40 | # Name: queues |
| 41 | # Type: list of OF (port-number, queue-id) pairs |
| 42 | # Description: |
| 43 | # Override list of OF (port-number, queue-id) pairs returned by switch |
| 44 | # Default: none |
| 45 | # |
Howard Persh | b10a47a | 2012-08-21 13:54:47 -0700 | [diff] [blame] | 46 | # Name: vlans |
| 47 | # Type: list of VLAN ids |
| 48 | # Description: |
| 49 | # Override VLAN ids used in tests to given list |
| 50 | # Default: [] |
| 51 | # |
Howard Persh | 07d99e6 | 2012-04-09 15:26:57 -0700 | [diff] [blame] | 52 | # Name: conservative_ordered_actions |
| 53 | # Type: boolean (True or False) |
| 54 | # Description: |
| 55 | # Compare flow actions lists as unordered |
| 56 | # Default: True |
| 57 | |
| 58 | |
Howard Persh | 680b92a | 2012-03-31 13:34:35 -0700 | [diff] [blame] | 59 | import math |
Howard Persh | c796358 | 2012-03-29 10:02:59 -0700 | [diff] [blame] | 60 | |
| 61 | import logging |
| 62 | |
| 63 | import unittest |
| 64 | import random |
Howard Persh | 9cab482 | 2012-09-11 17:08:40 -0700 | [diff] [blame] | 65 | import time |
Howard Persh | c796358 | 2012-03-29 10:02:59 -0700 | [diff] [blame] | 66 | |
Rich Lane | 477f481 | 2012-10-04 22:49:00 -0700 | [diff] [blame] | 67 | from oftest import config |
Howard Persh | c796358 | 2012-03-29 10:02:59 -0700 | [diff] [blame] | 68 | import oftest.controller as controller |
| 69 | import oftest.cstruct as ofp |
| 70 | import oftest.message as message |
| 71 | import oftest.dataplane as dataplane |
| 72 | import oftest.action as action |
| 73 | import oftest.action_list as action_list |
| 74 | import oftest.parse as parse |
| 75 | import pktact |
Rich Lane | b90a1c4 | 2012-10-05 09:16:05 -0700 | [diff] [blame] | 76 | import oftest.base_tests as base_tests |
Howard Persh | c796358 | 2012-03-29 10:02:59 -0700 | [diff] [blame] | 77 | |
Rich Lane | da3b5ad | 2012-10-03 09:05:32 -0700 | [diff] [blame] | 78 | from oftest.testutils import * |
Howard Persh | c796358 | 2012-03-29 10:02:59 -0700 | [diff] [blame] | 79 | from time import sleep |
| 80 | |
Howard Persh | c796358 | 2012-03-29 10:02:59 -0700 | [diff] [blame] | 81 | |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 82 | def flip_coin(): |
| 83 | return random.randint(1, 100) <= 50 |
| 84 | |
| 85 | |
Howard Persh | c796358 | 2012-03-29 10:02:59 -0700 | [diff] [blame] | 86 | def shuffle(list): |
| 87 | n = len(list) |
| 88 | lim = n * n |
| 89 | i = 0 |
| 90 | while i < lim: |
| 91 | a = random.randint(0, n - 1) |
| 92 | b = random.randint(0, n - 1) |
| 93 | temp = list[a] |
| 94 | list[a] = list[b] |
| 95 | list[b] = temp |
| 96 | i = i + 1 |
| 97 | return list |
| 98 | |
| 99 | |
Howard Persh | 680b92a | 2012-03-31 13:34:35 -0700 | [diff] [blame] | 100 | def rand_pick(list): |
| 101 | return list[random.randint(0, len(list) - 1)] |
Howard Persh | c796358 | 2012-03-29 10:02:59 -0700 | [diff] [blame] | 102 | |
Howard Persh | 680b92a | 2012-03-31 13:34:35 -0700 | [diff] [blame] | 103 | def rand_dl_addr(): |
| 104 | return [random.randint(0, 255) & ~1, |
| 105 | random.randint(0, 255), |
| 106 | random.randint(0, 255), |
| 107 | random.randint(0, 255), |
| 108 | random.randint(0, 255), |
| 109 | random.randint(0, 255) |
| 110 | ] |
Howard Persh | c796358 | 2012-03-29 10:02:59 -0700 | [diff] [blame] | 111 | |
| 112 | def rand_nw_addr(): |
| 113 | return random.randint(0, (1 << 32) - 1) |
| 114 | |
| 115 | |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 116 | class Flow_Info: |
Howard Persh | 680b92a | 2012-03-31 13:34:35 -0700 | [diff] [blame] | 117 | # Members: |
| 118 | # priorities - list of flow priorities |
| 119 | # dl_addrs - list of MAC addresses |
| 120 | # vlans - list of VLAN ids |
| 121 | # ethertypes - list of Ethertypes |
| 122 | # ip_addrs - list of IP addresses |
| 123 | # ip_tos - list of IP TOS values |
| 124 | # ip_protos - list of IP protocols |
| 125 | # l4_ports - list of L4 ports |
| 126 | |
| 127 | def __init__(self): |
| 128 | priorities = [] |
| 129 | dl_addrs = [] |
| 130 | vlans = [] |
| 131 | ethertypes = [] |
| 132 | ip_addrs = [] |
| 133 | ip_tos = [] |
| 134 | ip_protos = [] |
| 135 | l4_ports = [] |
| 136 | |
| 137 | def rand(self, n): |
| 138 | self.priorities = [] |
| 139 | i = 0 |
| 140 | while i < n: |
| 141 | self.priorities.append(random.randint(1, 65534)) |
| 142 | i = i + 1 |
| 143 | |
| 144 | self.dl_addrs = [] |
| 145 | i = 0 |
| 146 | while i < n: |
| 147 | self.dl_addrs.append(rand_dl_addr()) |
| 148 | i = i + 1 |
| 149 | |
Rich Lane | 2014f9b | 2012-10-05 15:29:40 -0700 | [diff] [blame] | 150 | if test_param_get("vlans", []) != []: |
| 151 | self.vlans = test_param_get("vlans", []) |
Howard Persh | b10a47a | 2012-08-21 13:54:47 -0700 | [diff] [blame] | 152 | |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 153 | logging.info("Overriding VLAN ids to:") |
| 154 | logging.info(self.vlans) |
Howard Persh | b10a47a | 2012-08-21 13:54:47 -0700 | [diff] [blame] | 155 | else: |
| 156 | self.vlans = [] |
| 157 | i = 0 |
| 158 | while i < n: |
| 159 | self.vlans.append(random.randint(1, 4094)) |
| 160 | i = i + 1 |
Howard Persh | 680b92a | 2012-03-31 13:34:35 -0700 | [diff] [blame] | 161 | |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 162 | self.ethertypes = [0x0800, 0x0806] |
Howard Persh | 680b92a | 2012-03-31 13:34:35 -0700 | [diff] [blame] | 163 | i = 0 |
| 164 | while i < n: |
| 165 | self.ethertypes.append(random.randint(0, (1 << 16) - 1)) |
| 166 | i = i + 1 |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 167 | self.ethertypes = shuffle(self.ethertypes)[0 : n] |
Howard Persh | 680b92a | 2012-03-31 13:34:35 -0700 | [diff] [blame] | 168 | |
| 169 | self.ip_addrs = [] |
| 170 | i = 0 |
| 171 | while i < n: |
| 172 | self.ip_addrs.append(rand_nw_addr()) |
| 173 | i = i + 1 |
| 174 | |
| 175 | self.ip_tos = [] |
| 176 | i = 0 |
| 177 | while i < n: |
| 178 | self.ip_tos.append(random.randint(0, (1 << 8) - 1) & ~3) |
| 179 | i = i + 1 |
| 180 | |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 181 | self.ip_protos = [1, 6, 17] |
Howard Persh | 680b92a | 2012-03-31 13:34:35 -0700 | [diff] [blame] | 182 | i = 0 |
| 183 | while i < n: |
| 184 | self.ip_protos.append(random.randint(0, (1 << 8) - 1)) |
| 185 | i = i + 1 |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 186 | self.ip_protos = shuffle(self.ip_protos)[0 : n] |
Howard Persh | 680b92a | 2012-03-31 13:34:35 -0700 | [diff] [blame] | 187 | |
| 188 | self.l4_ports = [] |
| 189 | i = 0 |
| 190 | while i < n: |
| 191 | self.l4_ports.append(random.randint(0, (1 << 16) - 1)) |
| 192 | i = i + 1 |
| 193 | |
| 194 | def rand_priority(self): |
| 195 | return rand_pick(self.priorities) |
| 196 | |
| 197 | def rand_dl_addr(self): |
| 198 | return rand_pick(self.dl_addrs) |
| 199 | |
| 200 | def rand_vlan(self): |
| 201 | return rand_pick(self.vlans) |
| 202 | |
| 203 | def rand_ethertype(self): |
| 204 | return rand_pick(self.ethertypes) |
| 205 | |
| 206 | def rand_ip_addr(self): |
| 207 | return rand_pick(self.ip_addrs) |
| 208 | |
| 209 | def rand_ip_tos(self): |
| 210 | return rand_pick(self.ip_tos) |
| 211 | |
| 212 | def rand_ip_proto(self): |
| 213 | return rand_pick(self.ip_protos) |
| 214 | |
| 215 | def rand_l4_port(self): |
| 216 | return rand_pick(self.l4_ports) |
| 217 | |
| 218 | |
Howard Persh | c796358 | 2012-03-29 10:02:59 -0700 | [diff] [blame] | 219 | # TBD - These don't belong here |
| 220 | |
Howard Persh | 680b92a | 2012-03-31 13:34:35 -0700 | [diff] [blame] | 221 | all_wildcards_list = [ofp.OFPFW_IN_PORT, |
Howard Persh | 680b92a | 2012-03-31 13:34:35 -0700 | [diff] [blame] | 222 | ofp.OFPFW_DL_DST, |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 223 | ofp.OFPFW_DL_SRC, |
| 224 | ofp.OFPFW_DL_VLAN, |
| 225 | ofp.OFPFW_DL_VLAN_PCP, |
Howard Persh | 680b92a | 2012-03-31 13:34:35 -0700 | [diff] [blame] | 226 | ofp.OFPFW_DL_TYPE, |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 227 | ofp.OFPFW_NW_TOS, |
Howard Persh | 680b92a | 2012-03-31 13:34:35 -0700 | [diff] [blame] | 228 | ofp.OFPFW_NW_PROTO, |
Howard Persh | 680b92a | 2012-03-31 13:34:35 -0700 | [diff] [blame] | 229 | ofp.OFPFW_NW_SRC_MASK, |
| 230 | ofp.OFPFW_NW_DST_MASK, |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 231 | ofp.OFPFW_TP_SRC, |
| 232 | ofp.OFPFW_TP_DST |
Howard Persh | 680b92a | 2012-03-31 13:34:35 -0700 | [diff] [blame] | 233 | ] |
Howard Persh | c796358 | 2012-03-29 10:02:59 -0700 | [diff] [blame] | 234 | |
Howard Persh | 3340d45 | 2012-04-06 16:45:21 -0700 | [diff] [blame] | 235 | # TBD - Need this because there are duplicates in ofp.ofp_flow_wildcards_map |
| 236 | # -- FIX |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 237 | all_wildcard_names = { |
| 238 | 1 : 'OFPFW_IN_PORT', |
| 239 | 2 : 'OFPFW_DL_VLAN', |
| 240 | 4 : 'OFPFW_DL_SRC', |
| 241 | 8 : 'OFPFW_DL_DST', |
| 242 | 16 : 'OFPFW_DL_TYPE', |
| 243 | 32 : 'OFPFW_NW_PROTO', |
| 244 | 64 : 'OFPFW_TP_SRC', |
| 245 | 128 : 'OFPFW_TP_DST', |
| 246 | 1048576 : 'OFPFW_DL_VLAN_PCP', |
| 247 | 2097152 : 'OFPFW_NW_TOS' |
| 248 | } |
| 249 | |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 250 | def wildcard_set(x, w, val): |
| 251 | result = x |
| 252 | if w == ofp.OFPFW_NW_SRC_MASK: |
Howard Persh | 3340d45 | 2012-04-06 16:45:21 -0700 | [diff] [blame] | 253 | result = (result & ~ofp.OFPFW_NW_SRC_MASK) \ |
| 254 | | (val << ofp.OFPFW_NW_SRC_SHIFT) |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 255 | elif w == ofp.OFPFW_NW_DST_MASK: |
Howard Persh | 3340d45 | 2012-04-06 16:45:21 -0700 | [diff] [blame] | 256 | result = (result & ~ofp.OFPFW_NW_DST_MASK) \ |
| 257 | | (val << ofp.OFPFW_NW_DST_SHIFT) |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 258 | elif val == 0: |
| 259 | result = result & ~w |
| 260 | else: |
| 261 | result = result | w |
| 262 | return result |
| 263 | |
| 264 | def wildcard_get(x, w): |
| 265 | if w == ofp.OFPFW_NW_SRC_MASK: |
| 266 | return (x & ofp.OFPFW_NW_SRC_MASK) >> ofp.OFPFW_NW_SRC_SHIFT |
| 267 | if w == ofp.OFPFW_NW_DST_MASK: |
| 268 | return (x & ofp.OFPFW_NW_DST_MASK) >> ofp.OFPFW_NW_DST_SHIFT |
| 269 | return 1 if (x & w) != 0 else 0 |
| 270 | |
Howard Persh | 8d21c1f | 2012-04-20 15:57:29 -0700 | [diff] [blame] | 271 | def wildcards_to_str(wildcards): |
| 272 | result = "{" |
| 273 | sep = "" |
| 274 | for w in all_wildcards_list: |
| 275 | if (wildcards & w) == 0: |
| 276 | continue |
| 277 | if w == ofp.OFPFW_NW_SRC_MASK: |
| 278 | n = wildcard_get(wildcards, w) |
| 279 | if n > 0: |
| 280 | result = result + sep + ("OFPFW_NW_SRC(%d)" % (n)) |
| 281 | elif w == ofp.OFPFW_NW_DST_MASK: |
| 282 | n = wildcard_get(wildcards, w) |
| 283 | if n > 0: |
| 284 | result = result + sep + ("OFPFW_NW_DST(%d)" % (n)) |
| 285 | else: |
| 286 | result = result + sep + all_wildcard_names[w] |
| 287 | sep = ", " |
| 288 | result = result +"}" |
| 289 | return result |
Howard Persh | c796358 | 2012-03-29 10:02:59 -0700 | [diff] [blame] | 290 | |
Howard Persh | 680b92a | 2012-03-31 13:34:35 -0700 | [diff] [blame] | 291 | all_actions_list = [ofp.OFPAT_OUTPUT, |
| 292 | ofp.OFPAT_SET_VLAN_VID, |
| 293 | ofp.OFPAT_SET_VLAN_PCP, |
| 294 | ofp.OFPAT_STRIP_VLAN, |
| 295 | ofp.OFPAT_SET_DL_SRC, |
| 296 | ofp.OFPAT_SET_DL_DST, |
| 297 | ofp.OFPAT_SET_NW_SRC, |
| 298 | ofp.OFPAT_SET_NW_DST, |
| 299 | ofp.OFPAT_SET_NW_TOS, |
| 300 | ofp.OFPAT_SET_TP_SRC, |
| 301 | ofp.OFPAT_SET_TP_DST, |
| 302 | ofp.OFPAT_ENQUEUE |
| 303 | ] |
| 304 | |
Howard Persh | 8d21c1f | 2012-04-20 15:57:29 -0700 | [diff] [blame] | 305 | def actions_bmap_to_str(bm): |
| 306 | result = "{" |
| 307 | sep = "" |
| 308 | for a in all_actions_list: |
| 309 | if ((1 << a) & bm) != 0: |
| 310 | result = result + sep + ofp.ofp_action_type_map[a] |
| 311 | sep = ", " |
| 312 | result = result + "}" |
| 313 | return result |
| 314 | |
Howard Persh | 680b92a | 2012-03-31 13:34:35 -0700 | [diff] [blame] | 315 | def dl_addr_to_str(a): |
| 316 | return "%x:%x:%x:%x:%x:%x" % tuple(a) |
| 317 | |
| 318 | def ip_addr_to_str(a, n): |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 319 | if n is not None: |
| 320 | a = a & ~((1 << (32 - n)) - 1) |
Howard Persh | 680b92a | 2012-03-31 13:34:35 -0700 | [diff] [blame] | 321 | result = "%d.%d.%d.%d" % (a >> 24, \ |
| 322 | (a >> 16) & 0xff, \ |
| 323 | (a >> 8) & 0xff, \ |
| 324 | a & 0xff \ |
| 325 | ) |
| 326 | if n is not None: |
| 327 | result = result + ("/%d" % (n)) |
| 328 | return result |
| 329 | |
Howard Persh | c796358 | 2012-03-29 10:02:59 -0700 | [diff] [blame] | 330 | |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 331 | class Flow_Cfg: |
Howard Persh | c796358 | 2012-03-29 10:02:59 -0700 | [diff] [blame] | 332 | # Members: |
| 333 | # - match |
| 334 | # - idle_timeout |
| 335 | # - hard_timeout |
| 336 | # - priority |
| 337 | # - action_list |
| 338 | |
| 339 | def __init__(self): |
Howard Persh | 680b92a | 2012-03-31 13:34:35 -0700 | [diff] [blame] | 340 | self.priority = 0 |
Howard Persh | c796358 | 2012-03-29 10:02:59 -0700 | [diff] [blame] | 341 | self.match = parse.ofp_match() |
| 342 | self.match.wildcards = ofp.OFPFW_ALL |
| 343 | self.idle_timeout = 0 |
| 344 | self.hard_timeout = 0 |
Howard Persh | c796358 | 2012-03-29 10:02:59 -0700 | [diff] [blame] | 345 | self.actions = action_list.action_list() |
| 346 | |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 347 | # {pri, match} is considered a flow key |
| 348 | def key_equal(self, x): |
Howard Persh | 680b92a | 2012-03-31 13:34:35 -0700 | [diff] [blame] | 349 | if self.priority != x.priority: |
| 350 | return False |
| 351 | # TBD - Should this logic be moved to ofp_match.__eq__()? |
| 352 | if self.match.wildcards != x.match.wildcards: |
| 353 | return False |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 354 | if wildcard_get(self.match.wildcards, ofp.OFPFW_IN_PORT) == 0 \ |
Howard Persh | 680b92a | 2012-03-31 13:34:35 -0700 | [diff] [blame] | 355 | and self.match.in_port != x.match.in_port: |
| 356 | return False |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 357 | if wildcard_get(self.match.wildcards, ofp.OFPFW_DL_DST) == 0 \ |
Howard Persh | 680b92a | 2012-03-31 13:34:35 -0700 | [diff] [blame] | 358 | and self.match.dl_dst != x.match.dl_dst: |
| 359 | return False |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 360 | if wildcard_get(self.match.wildcards, ofp.OFPFW_DL_SRC) == 0 \ |
| 361 | and self.match.dl_src != x.match.dl_src: |
| 362 | return False |
| 363 | if wildcard_get(self.match.wildcards, ofp.OFPFW_DL_VLAN) == 0 \ |
Howard Persh | 680b92a | 2012-03-31 13:34:35 -0700 | [diff] [blame] | 364 | and self.match.dl_vlan != x.match.dl_vlan: |
| 365 | return False |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 366 | if wildcard_get(self.match.wildcards, ofp.OFPFW_DL_VLAN_PCP) == 0 \ |
Howard Persh | 680b92a | 2012-03-31 13:34:35 -0700 | [diff] [blame] | 367 | and self.match.dl_vlan_pcp != x.match.dl_vlan_pcp: |
| 368 | return False |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 369 | if wildcard_get(self.match.wildcards, ofp.OFPFW_DL_TYPE) == 0 \ |
Howard Persh | 680b92a | 2012-03-31 13:34:35 -0700 | [diff] [blame] | 370 | and self.match.dl_type != x.match.dl_type: |
| 371 | return False |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 372 | if wildcard_get(self.match.wildcards, ofp.OFPFW_NW_TOS) == 0 \ |
Howard Persh | 680b92a | 2012-03-31 13:34:35 -0700 | [diff] [blame] | 373 | and self.match.nw_tos != x.match.nw_tos: |
| 374 | return False |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 375 | if wildcard_get(self.match.wildcards, ofp.OFPFW_NW_PROTO) == 0 \ |
Howard Persh | 680b92a | 2012-03-31 13:34:35 -0700 | [diff] [blame] | 376 | and self.match.nw_proto != x.match.nw_proto: |
| 377 | return False |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 378 | n = wildcard_get(self.match.wildcards, ofp.OFPFW_NW_SRC_MASK) |
| 379 | if n < 32: |
| 380 | m = ~((1 << n) - 1) |
Howard Persh | 680b92a | 2012-03-31 13:34:35 -0700 | [diff] [blame] | 381 | if (self.match.nw_src & m) != (x.match.nw_src & m): |
| 382 | return False |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 383 | n = wildcard_get(self.match.wildcards, ofp.OFPFW_NW_DST_MASK) |
| 384 | if n < 32: |
| 385 | m = ~((1 << n) - 1) |
Howard Persh | 680b92a | 2012-03-31 13:34:35 -0700 | [diff] [blame] | 386 | if (self.match.nw_dst & m) != (x.match.nw_dst & m): |
| 387 | return False |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 388 | if wildcard_get(self.match.wildcards, ofp.OFPFW_TP_SRC) == 0 \ |
| 389 | and self.match.tp_src != x.match.tp_src: |
Howard Persh | 680b92a | 2012-03-31 13:34:35 -0700 | [diff] [blame] | 390 | return False |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 391 | if wildcard_get(self.match.wildcards, ofp.OFPFW_TP_DST) == 0 \ |
| 392 | and self.match.tp_dst != x.match.tp_dst: |
| 393 | return False |
| 394 | return True |
| 395 | |
Howard Persh | 5f3c83f | 2012-04-13 09:57:10 -0700 | [diff] [blame] | 396 | def actions_equal(self, x): |
Rich Lane | 2014f9b | 2012-10-05 15:29:40 -0700 | [diff] [blame] | 397 | if test_param_get("conservative_ordered_actions", True): |
Howard Persh | 5f3c83f | 2012-04-13 09:57:10 -0700 | [diff] [blame] | 398 | # Compare actions lists as unordered |
| 399 | |
root | 2843d2b | 2012-04-06 10:27:46 -0700 | [diff] [blame] | 400 | aa = copy.deepcopy(x.actions.actions) |
| 401 | for a in self.actions.actions: |
| 402 | i = 0 |
| 403 | while i < len(aa): |
| 404 | if a == aa[i]: |
| 405 | break |
| 406 | i = i + 1 |
| 407 | if i < len(aa): |
| 408 | aa.pop(i) |
| 409 | else: |
| 410 | return False |
| 411 | return aa == [] |
| 412 | else: |
| 413 | return self.actions == x.actions |
Howard Persh | 5f3c83f | 2012-04-13 09:57:10 -0700 | [diff] [blame] | 414 | |
| 415 | def non_key_equal(self, x): |
| 416 | if self.cookie != x.cookie: |
| 417 | return False |
| 418 | if self.idle_timeout != x.idle_timeout: |
| 419 | return False |
| 420 | if self.hard_timeout != x.hard_timeout: |
| 421 | return False |
| 422 | return self.actions_equal(x) |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 423 | |
root | 2843d2b | 2012-04-06 10:27:46 -0700 | [diff] [blame] | 424 | def key_str(self): |
Howard Persh | 680b92a | 2012-03-31 13:34:35 -0700 | [diff] [blame] | 425 | result = "priority=%d" % self.priority |
| 426 | # TBD - Would be nice if ofp_match.show() was better behaved |
| 427 | # (no newlines), and more intuitive (things in hex where approprate), etc. |
Howard Persh | 8d21c1f | 2012-04-20 15:57:29 -0700 | [diff] [blame] | 428 | result = result + (", wildcards=0x%x=%s" \ |
| 429 | % (self.match.wildcards, \ |
| 430 | wildcards_to_str(self.match.wildcards) \ |
| 431 | ) |
| 432 | ) |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 433 | if wildcard_get(self.match.wildcards, ofp.OFPFW_IN_PORT) == 0: |
Howard Persh | 680b92a | 2012-03-31 13:34:35 -0700 | [diff] [blame] | 434 | result = result + (", in_port=%d" % (self.match.in_port)) |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 435 | if wildcard_get(self.match.wildcards, ofp.OFPFW_DL_DST) == 0: |
Howard Persh | 3340d45 | 2012-04-06 16:45:21 -0700 | [diff] [blame] | 436 | result = result + (", dl_dst=%s" \ |
| 437 | % (dl_addr_to_str(self.match.dl_dst)) \ |
| 438 | ) |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 439 | if wildcard_get(self.match.wildcards, ofp.OFPFW_DL_SRC) == 0: |
Howard Persh | 3340d45 | 2012-04-06 16:45:21 -0700 | [diff] [blame] | 440 | result = result + (", dl_src=%s" \ |
| 441 | % (dl_addr_to_str(self.match.dl_src)) \ |
| 442 | ) |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 443 | if wildcard_get(self.match.wildcards, ofp.OFPFW_DL_VLAN) == 0: |
Howard Persh | 680b92a | 2012-03-31 13:34:35 -0700 | [diff] [blame] | 444 | result = result + (", dl_vlan=%d" % (self.match.dl_vlan)) |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 445 | if wildcard_get(self.match.wildcards, ofp.OFPFW_DL_VLAN_PCP) == 0: |
Howard Persh | 680b92a | 2012-03-31 13:34:35 -0700 | [diff] [blame] | 446 | result = result + (", dl_vlan_pcp=%d" % (self.match.dl_vlan_pcp)) |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 447 | if wildcard_get(self.match.wildcards, ofp.OFPFW_DL_TYPE) == 0: |
Howard Persh | 680b92a | 2012-03-31 13:34:35 -0700 | [diff] [blame] | 448 | result = result + (", dl_type=0x%x" % (self.match.dl_type)) |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 449 | if wildcard_get(self.match.wildcards, ofp.OFPFW_NW_TOS) == 0: |
Howard Persh | 680b92a | 2012-03-31 13:34:35 -0700 | [diff] [blame] | 450 | result = result + (", nw_tos=0x%x" % (self.match.nw_tos)) |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 451 | if wildcard_get(self.match.wildcards, ofp.OFPFW_NW_PROTO) == 0: |
Howard Persh | 680b92a | 2012-03-31 13:34:35 -0700 | [diff] [blame] | 452 | result = result + (", nw_proto=%d" % (self.match.nw_proto)) |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 453 | n = wildcard_get(self.match.wildcards, ofp.OFPFW_NW_SRC_MASK) |
Howard Persh | 680b92a | 2012-03-31 13:34:35 -0700 | [diff] [blame] | 454 | if n < 32: |
Howard Persh | 3340d45 | 2012-04-06 16:45:21 -0700 | [diff] [blame] | 455 | result = result + (", nw_src=%s" % \ |
| 456 | (ip_addr_to_str(self.match.nw_src, 32 - n)) \ |
| 457 | ) |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 458 | n = wildcard_get(self.match.wildcards, ofp.OFPFW_NW_DST_MASK) |
Howard Persh | 680b92a | 2012-03-31 13:34:35 -0700 | [diff] [blame] | 459 | if n < 32: |
Howard Persh | 3340d45 | 2012-04-06 16:45:21 -0700 | [diff] [blame] | 460 | result = result + (", nw_dst=%s" % \ |
| 461 | (ip_addr_to_str(self.match.nw_dst, 32 - n)) \ |
| 462 | ) |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 463 | if wildcard_get(self.match.wildcards, ofp.OFPFW_TP_SRC) == 0: |
Howard Persh | 680b92a | 2012-03-31 13:34:35 -0700 | [diff] [blame] | 464 | result = result + (", tp_src=%d" % self.match.tp_src) |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 465 | if wildcard_get(self.match.wildcards, ofp.OFPFW_TP_DST) == 0: |
Howard Persh | 680b92a | 2012-03-31 13:34:35 -0700 | [diff] [blame] | 466 | result = result + (", tp_dst=%d" % self.match.tp_dst) |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 467 | return result |
| 468 | |
| 469 | def __eq__(self, x): |
| 470 | return (self.key_equal(x) and self.non_key_equal(x)) |
| 471 | |
| 472 | def __str__(self): |
root | 2843d2b | 2012-04-06 10:27:46 -0700 | [diff] [blame] | 473 | result = self.key_str() |
| 474 | result = result + (", cookie=%d" % self.cookie) |
Howard Persh | 680b92a | 2012-03-31 13:34:35 -0700 | [diff] [blame] | 475 | result = result + (", idle_timeout=%d" % self.idle_timeout) |
| 476 | result = result + (", hard_timeout=%d" % self.hard_timeout) |
Howard Persh | 680b92a | 2012-03-31 13:34:35 -0700 | [diff] [blame] | 477 | for a in self.actions.actions: |
| 478 | result = result + (", action=%s" % ofp.ofp_action_type_map[a.type]) |
| 479 | if a.type == ofp.OFPAT_OUTPUT: |
| 480 | result = result + ("(%d)" % (a.port)) |
| 481 | elif a.type == ofp.OFPAT_SET_VLAN_VID: |
| 482 | result = result + ("(%d)" % (a.vlan_vid)) |
| 483 | elif a.type == ofp.OFPAT_SET_VLAN_PCP: |
| 484 | result = result + ("(%d)" % (a.vlan_pcp)) |
| 485 | elif a.type == ofp.OFPAT_SET_DL_SRC or a.type == ofp.OFPAT_SET_DL_DST: |
| 486 | result = result + ("(%s)" % (dl_addr_to_str(a.dl_addr))) |
| 487 | elif a.type == ofp.OFPAT_SET_NW_SRC or a.type == ofp.OFPAT_SET_NW_DST: |
| 488 | result = result + ("(%s)" % (ip_addr_to_str(a.nw_addr, None))) |
| 489 | elif a.type == ofp.OFPAT_SET_NW_TOS: |
| 490 | result = result + ("(0x%x)" % (a.nw_tos)) |
| 491 | elif a.type == ofp.OFPAT_SET_TP_SRC or a.type == ofp.OFPAT_SET_TP_DST: |
| 492 | result = result + ("(%d)" % (a.tp_port)) |
| 493 | elif a.type == ofp.OFPAT_ENQUEUE: |
| 494 | result = result + ("(port=%d,queue=%d)" % (a.port, a.queue_id)) |
| 495 | return result |
Howard Persh | c796358 | 2012-03-29 10:02:59 -0700 | [diff] [blame] | 496 | |
Howard Persh | 8d21c1f | 2012-04-20 15:57:29 -0700 | [diff] [blame] | 497 | def rand_actions_ordered(self, fi, valid_actions, valid_ports, valid_queues): |
Howard Persh | 3340d45 | 2012-04-06 16:45:21 -0700 | [diff] [blame] | 498 | # Action lists are ordered, so pick an ordered random subset of |
| 499 | # supported actions |
Howard Persh | c1199d5 | 2012-04-11 14:21:32 -0700 | [diff] [blame] | 500 | |
Rich Lane | 2014f9b | 2012-10-05 15:29:40 -0700 | [diff] [blame] | 501 | actions_force = test_param_get("actions_force", 0) |
Howard Persh | 8d21c1f | 2012-04-20 15:57:29 -0700 | [diff] [blame] | 502 | if actions_force != 0: |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 503 | logging.info("Forced actions:") |
| 504 | logging.info(actions_bmap_to_str(actions_force)) |
Howard Persh | c1199d5 | 2012-04-11 14:21:32 -0700 | [diff] [blame] | 505 | |
Dan Talayco | 910a828 | 2012-04-07 00:05:20 -0700 | [diff] [blame] | 506 | ACTION_MAX_LEN = 65535 # @fixme Should be test param? |
Howard Persh | 3340d45 | 2012-04-06 16:45:21 -0700 | [diff] [blame] | 507 | supported_actions = [] |
| 508 | for a in all_actions_list: |
| 509 | if ((1 << a) & valid_actions) != 0: |
| 510 | supported_actions.append(a) |
| 511 | |
Howard Persh | c1199d5 | 2012-04-11 14:21:32 -0700 | [diff] [blame] | 512 | actions \ |
| 513 | = shuffle(supported_actions)[0 : random.randint(1, len(supported_actions))] |
| 514 | |
| 515 | for a in all_actions_list: |
| 516 | if ((1 << a) & actions_force) != 0: |
| 517 | actions.append(a) |
| 518 | |
| 519 | actions = shuffle(actions) |
Howard Persh | 3340d45 | 2012-04-06 16:45:21 -0700 | [diff] [blame] | 520 | |
Howard Persh | 6a3698d | 2012-08-21 14:26:39 -0700 | [diff] [blame] | 521 | set_vlanf = False |
| 522 | strip_vlanf = False |
Howard Persh | 3340d45 | 2012-04-06 16:45:21 -0700 | [diff] [blame] | 523 | self.actions = action_list.action_list() |
Howard Persh | c1199d5 | 2012-04-11 14:21:32 -0700 | [diff] [blame] | 524 | for a in actions: |
Dan Talayco | 910a828 | 2012-04-07 00:05:20 -0700 | [diff] [blame] | 525 | act = None |
Howard Persh | 3340d45 | 2012-04-06 16:45:21 -0700 | [diff] [blame] | 526 | if a == ofp.OFPAT_OUTPUT: |
| 527 | pass # OUTPUT actions must come last |
| 528 | elif a == ofp.OFPAT_SET_VLAN_VID: |
Howard Persh | 6a3698d | 2012-08-21 14:26:39 -0700 | [diff] [blame] | 529 | if not strip_vlanf: |
| 530 | act = action.action_set_vlan_vid() |
| 531 | act.vlan_vid = fi.rand_vlan() |
| 532 | set_vlanf = True |
Howard Persh | 3340d45 | 2012-04-06 16:45:21 -0700 | [diff] [blame] | 533 | elif a == ofp.OFPAT_SET_VLAN_PCP: |
Howard Persh | 6a3698d | 2012-08-21 14:26:39 -0700 | [diff] [blame] | 534 | if not strip_vlanf: |
| 535 | act = action.action_set_vlan_pcp() |
| 536 | act.vlan_pcp = random.randint(0, (1 << 3) - 1) |
| 537 | set_vlanf = True |
Howard Persh | 3340d45 | 2012-04-06 16:45:21 -0700 | [diff] [blame] | 538 | elif a == ofp.OFPAT_STRIP_VLAN: |
Howard Persh | 6a3698d | 2012-08-21 14:26:39 -0700 | [diff] [blame] | 539 | if not set_vlanf: |
| 540 | act = action.action_strip_vlan() |
| 541 | strip_vlanf = True |
Howard Persh | 3340d45 | 2012-04-06 16:45:21 -0700 | [diff] [blame] | 542 | elif a == ofp.OFPAT_SET_DL_SRC: |
| 543 | act = action.action_set_dl_src() |
| 544 | act.dl_addr = fi.rand_dl_addr() |
Howard Persh | 3340d45 | 2012-04-06 16:45:21 -0700 | [diff] [blame] | 545 | elif a == ofp.OFPAT_SET_DL_DST: |
| 546 | act = action.action_set_dl_dst() |
| 547 | act.dl_addr = fi.rand_dl_addr() |
Howard Persh | 3340d45 | 2012-04-06 16:45:21 -0700 | [diff] [blame] | 548 | elif a == ofp.OFPAT_SET_NW_SRC: |
| 549 | act = action.action_set_nw_src() |
| 550 | act.nw_addr = fi.rand_ip_addr() |
Howard Persh | 3340d45 | 2012-04-06 16:45:21 -0700 | [diff] [blame] | 551 | elif a == ofp.OFPAT_SET_NW_DST: |
| 552 | act = action.action_set_nw_dst() |
| 553 | act.nw_addr = fi.rand_ip_addr() |
Howard Persh | 3340d45 | 2012-04-06 16:45:21 -0700 | [diff] [blame] | 554 | elif a == ofp.OFPAT_SET_NW_TOS: |
| 555 | act = action.action_set_nw_tos() |
| 556 | act.nw_tos = fi.rand_ip_tos() |
Howard Persh | 3340d45 | 2012-04-06 16:45:21 -0700 | [diff] [blame] | 557 | elif a == ofp.OFPAT_SET_TP_SRC: |
| 558 | act = action.action_set_tp_src() |
| 559 | act.tp_port = fi.rand_l4_port() |
Howard Persh | 3340d45 | 2012-04-06 16:45:21 -0700 | [diff] [blame] | 560 | elif a == ofp.OFPAT_SET_TP_DST: |
| 561 | act = action.action_set_tp_dst() |
| 562 | act.tp_port = fi.rand_l4_port() |
Howard Persh | 3340d45 | 2012-04-06 16:45:21 -0700 | [diff] [blame] | 563 | elif a == ofp.OFPAT_ENQUEUE: |
| 564 | pass # Enqueue actions must come last |
Dan Talayco | 910a828 | 2012-04-07 00:05:20 -0700 | [diff] [blame] | 565 | if act: |
Dan Talayco | 910a828 | 2012-04-07 00:05:20 -0700 | [diff] [blame] | 566 | self.actions.add(act) |
| 567 | |
Howard Persh | 3340d45 | 2012-04-06 16:45:21 -0700 | [diff] [blame] | 568 | p = random.randint(1, 100) |
Howard Persh | c1199d5 | 2012-04-11 14:21:32 -0700 | [diff] [blame] | 569 | if (((1 << ofp.OFPAT_ENQUEUE) & actions_force) != 0 or p <= 33) \ |
Howard Persh | 8d21c1f | 2012-04-20 15:57:29 -0700 | [diff] [blame] | 570 | and len(valid_queues) > 0 \ |
| 571 | and ofp.OFPAT_ENQUEUE in actions: |
Howard Persh | c1199d5 | 2012-04-11 14:21:32 -0700 | [diff] [blame] | 572 | # In not forecd, one third of the time, include ENQUEUE actions |
| 573 | # at end of list |
Howard Persh | 3340d45 | 2012-04-06 16:45:21 -0700 | [diff] [blame] | 574 | # At most 1 ENQUEUE action |
| 575 | act = action.action_enqueue() |
Howard Persh | 8d21c1f | 2012-04-20 15:57:29 -0700 | [diff] [blame] | 576 | (act.port, act.queue_id) = rand_pick(valid_queues) |
Howard Persh | 3340d45 | 2012-04-06 16:45:21 -0700 | [diff] [blame] | 577 | self.actions.add(act) |
Howard Persh | c1199d5 | 2012-04-11 14:21:32 -0700 | [diff] [blame] | 578 | if (((1 << ofp.OFPAT_OUTPUT) & actions_force) != 0 \ |
| 579 | or (p > 33 and p <= 66) \ |
| 580 | ) \ |
Howard Persh | 8d21c1f | 2012-04-20 15:57:29 -0700 | [diff] [blame] | 581 | and len(valid_ports) > 0 \ |
Howard Persh | c1199d5 | 2012-04-11 14:21:32 -0700 | [diff] [blame] | 582 | and ofp.OFPAT_OUTPUT in actions: |
Howard Persh | 3340d45 | 2012-04-06 16:45:21 -0700 | [diff] [blame] | 583 | # One third of the time, include OUTPUT actions at end of list |
| 584 | port_idxs = shuffle(range(len(valid_ports))) |
| 585 | # Only 1 output action allowed if IN_PORT wildcarded |
| 586 | n = 1 if wildcard_get(self.match.wildcards, ofp.OFPFW_IN_PORT) != 0 \ |
| 587 | else random.randint(1, len(valid_ports)) |
| 588 | port_idxs = port_idxs[0 : n] |
| 589 | for pi in port_idxs: |
| 590 | act = action.action_output() |
| 591 | act.port = valid_ports[pi] |
Howard Persh | 3340d45 | 2012-04-06 16:45:21 -0700 | [diff] [blame] | 592 | if act.port != ofp.OFPP_IN_PORT \ |
| 593 | or wildcard_get(self.match.wildcards, ofp.OFPFW_IN_PORT) == 0: |
| 594 | # OUTPUT(IN_PORT) only valid if OFPFW_IN_PORT not wildcarded |
| 595 | self.actions.add(act) |
| 596 | else: |
| 597 | # One third of the time, include neither |
| 598 | pass |
| 599 | |
| 600 | |
| 601 | # Randomize flow data for flow modifies (i.e. cookie and actions) |
Howard Persh | 8d21c1f | 2012-04-20 15:57:29 -0700 | [diff] [blame] | 602 | def rand_mod(self, fi, valid_actions, valid_ports, valid_queues): |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 603 | self.cookie = random.randint(0, (1 << 53) - 1) |
Howard Persh | c796358 | 2012-03-29 10:02:59 -0700 | [diff] [blame] | 604 | |
Dan Talayco | 910a828 | 2012-04-07 00:05:20 -0700 | [diff] [blame] | 605 | # By default, test with conservative ordering conventions |
| 606 | # This should probably be indicated in a profile |
Rich Lane | 2014f9b | 2012-10-05 15:29:40 -0700 | [diff] [blame] | 607 | if test_param_get("conservative_ordered_actions", True): |
Howard Persh | 8d21c1f | 2012-04-20 15:57:29 -0700 | [diff] [blame] | 608 | self.rand_actions_ordered(fi, valid_actions, valid_ports, valid_queues) |
Howard Persh | 3340d45 | 2012-04-06 16:45:21 -0700 | [diff] [blame] | 609 | return self |
| 610 | |
Rich Lane | 2014f9b | 2012-10-05 15:29:40 -0700 | [diff] [blame] | 611 | actions_force = test_param_get("actions_force", 0) |
Howard Persh | 8d21c1f | 2012-04-20 15:57:29 -0700 | [diff] [blame] | 612 | if actions_force != 0: |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 613 | logging.info("Forced actions:") |
| 614 | logging.info(actions_bmap_to_str(actions_force)) |
Howard Persh | c1199d5 | 2012-04-11 14:21:32 -0700 | [diff] [blame] | 615 | |
| 616 | ACTION_MAX_LEN = 65535 # @fixme Should be test param? |
Howard Persh | 680b92a | 2012-03-31 13:34:35 -0700 | [diff] [blame] | 617 | supported_actions = [] |
| 618 | for a in all_actions_list: |
| 619 | if ((1 << a) & valid_actions) != 0: |
| 620 | supported_actions.append(a) |
| 621 | |
Howard Persh | c1199d5 | 2012-04-11 14:21:32 -0700 | [diff] [blame] | 622 | actions \ |
| 623 | = shuffle(supported_actions)[0 : random.randint(1, len(supported_actions))] |
| 624 | |
| 625 | for a in all_actions_list: |
| 626 | if ((1 << a) & actions_force) != 0: |
| 627 | actions.append(a) |
| 628 | |
| 629 | actions = shuffle(actions) |
Howard Persh | c796358 | 2012-03-29 10:02:59 -0700 | [diff] [blame] | 630 | |
| 631 | self.actions = action_list.action_list() |
Howard Persh | c1199d5 | 2012-04-11 14:21:32 -0700 | [diff] [blame] | 632 | for a in actions: |
Howard Persh | c796358 | 2012-03-29 10:02:59 -0700 | [diff] [blame] | 633 | if a == ofp.OFPAT_OUTPUT: |
| 634 | # TBD - Output actions are clustered in list, spread them out? |
Howard Persh | 8d21c1f | 2012-04-20 15:57:29 -0700 | [diff] [blame] | 635 | if len(valid_ports) == 0: |
| 636 | continue |
Howard Persh | c796358 | 2012-03-29 10:02:59 -0700 | [diff] [blame] | 637 | port_idxs = shuffle(range(len(valid_ports))) |
Howard Persh | 680b92a | 2012-03-31 13:34:35 -0700 | [diff] [blame] | 638 | port_idxs = port_idxs[0 : random.randint(1, len(valid_ports))] |
Howard Persh | c796358 | 2012-03-29 10:02:59 -0700 | [diff] [blame] | 639 | for pi in port_idxs: |
| 640 | act = action.action_output() |
Howard Persh | 680b92a | 2012-03-31 13:34:35 -0700 | [diff] [blame] | 641 | act.port = valid_ports[pi] |
Howard Persh | c796358 | 2012-03-29 10:02:59 -0700 | [diff] [blame] | 642 | self.actions.add(act) |
| 643 | elif a == ofp.OFPAT_SET_VLAN_VID: |
| 644 | act = action.action_set_vlan_vid() |
Howard Persh | 680b92a | 2012-03-31 13:34:35 -0700 | [diff] [blame] | 645 | act.vlan_vid = fi.rand_vlan() |
Howard Persh | c796358 | 2012-03-29 10:02:59 -0700 | [diff] [blame] | 646 | self.actions.add(act) |
| 647 | elif a == ofp.OFPAT_SET_VLAN_PCP: |
Dan Talayco | 910a828 | 2012-04-07 00:05:20 -0700 | [diff] [blame] | 648 | act = action.action_set_vlan_pcp() |
| 649 | act.vlan_pcp = random.randint(0, (1 << 3) - 1) |
Howard Persh | c796358 | 2012-03-29 10:02:59 -0700 | [diff] [blame] | 650 | elif a == ofp.OFPAT_STRIP_VLAN: |
| 651 | act = action.action_strip_vlan() |
| 652 | self.actions.add(act) |
| 653 | elif a == ofp.OFPAT_SET_DL_SRC: |
| 654 | act = action.action_set_dl_src() |
Howard Persh | 680b92a | 2012-03-31 13:34:35 -0700 | [diff] [blame] | 655 | act.dl_addr = fi.rand_dl_addr() |
Howard Persh | c796358 | 2012-03-29 10:02:59 -0700 | [diff] [blame] | 656 | self.actions.add(act) |
| 657 | elif a == ofp.OFPAT_SET_DL_DST: |
| 658 | act = action.action_set_dl_dst() |
Howard Persh | 680b92a | 2012-03-31 13:34:35 -0700 | [diff] [blame] | 659 | act.dl_addr = fi.rand_dl_addr() |
Howard Persh | c796358 | 2012-03-29 10:02:59 -0700 | [diff] [blame] | 660 | self.actions.add(act) |
| 661 | elif a == ofp.OFPAT_SET_NW_SRC: |
| 662 | act = action.action_set_nw_src() |
Howard Persh | 680b92a | 2012-03-31 13:34:35 -0700 | [diff] [blame] | 663 | act.nw_addr = fi.rand_ip_addr() |
Howard Persh | c796358 | 2012-03-29 10:02:59 -0700 | [diff] [blame] | 664 | self.actions.add(act) |
| 665 | elif a == ofp.OFPAT_SET_NW_DST: |
| 666 | act = action.action_set_nw_dst() |
Howard Persh | 680b92a | 2012-03-31 13:34:35 -0700 | [diff] [blame] | 667 | act.nw_addr = fi.rand_ip_addr() |
Howard Persh | c796358 | 2012-03-29 10:02:59 -0700 | [diff] [blame] | 668 | self.actions.add(act) |
| 669 | elif a == ofp.OFPAT_SET_NW_TOS: |
| 670 | act = action.action_set_nw_tos() |
Howard Persh | 680b92a | 2012-03-31 13:34:35 -0700 | [diff] [blame] | 671 | act.nw_tos = fi.rand_ip_tos() |
Howard Persh | c796358 | 2012-03-29 10:02:59 -0700 | [diff] [blame] | 672 | self.actions.add(act) |
| 673 | elif a == ofp.OFPAT_SET_TP_SRC: |
| 674 | act = action.action_set_tp_src() |
Howard Persh | 680b92a | 2012-03-31 13:34:35 -0700 | [diff] [blame] | 675 | act.tp_port = fi.rand_l4_port() |
Howard Persh | c796358 | 2012-03-29 10:02:59 -0700 | [diff] [blame] | 676 | self.actions.add(act) |
| 677 | elif a == ofp.OFPAT_SET_TP_DST: |
| 678 | act = action.action_set_tp_dst() |
Howard Persh | 680b92a | 2012-03-31 13:34:35 -0700 | [diff] [blame] | 679 | act.tp_port = fi.rand_l4_port() |
Howard Persh | c796358 | 2012-03-29 10:02:59 -0700 | [diff] [blame] | 680 | self.actions.add(act) |
| 681 | elif a == ofp.OFPAT_ENQUEUE: |
| 682 | # TBD - Enqueue actions are clustered in list, spread them out? |
Howard Persh | 8d21c1f | 2012-04-20 15:57:29 -0700 | [diff] [blame] | 683 | if len(valid_queues) == 0: |
| 684 | continue |
| 685 | qidxs = shuffle(range(len(valid_queues))) |
| 686 | qidxs = qidxs[0 : random.randint(1, len(valid_queues))] |
| 687 | for qi in qidxs: |
Howard Persh | c796358 | 2012-03-29 10:02:59 -0700 | [diff] [blame] | 688 | act = action.action_enqueue() |
Howard Persh | 8d21c1f | 2012-04-20 15:57:29 -0700 | [diff] [blame] | 689 | (act.port, act.queue_id) = valid_queues[qi] |
Howard Persh | c796358 | 2012-03-29 10:02:59 -0700 | [diff] [blame] | 690 | self.actions.add(act) |
| 691 | |
| 692 | return self |
| 693 | |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 694 | # Randomize flow cfg |
Ed Swierk | 99a74de | 2012-08-22 06:40:54 -0700 | [diff] [blame] | 695 | def rand(self, fi, wildcards_force, valid_wildcards, valid_actions, valid_ports, |
| 696 | valid_queues): |
Howard Persh | 8d21c1f | 2012-04-20 15:57:29 -0700 | [diff] [blame] | 697 | if wildcards_force != 0: |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 698 | logging.info("Wildcards forced:") |
| 699 | logging.info(wildcards_to_str(wildcards_force)) |
Howard Persh | c1199d5 | 2012-04-11 14:21:32 -0700 | [diff] [blame] | 700 | |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 701 | # Start with no wildcards, i.e. everything specified |
| 702 | self.match.wildcards = 0 |
Howard Persh | c1199d5 | 2012-04-11 14:21:32 -0700 | [diff] [blame] | 703 | |
| 704 | if wildcards_force != 0: |
| 705 | exact = False |
| 706 | else: |
| 707 | # Make approx. 5% of flows exact |
| 708 | exact = (random.randint(1, 100) <= 5) |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 709 | |
| 710 | # For each qualifier Q, |
| 711 | # if (wildcarding is not supported for Q, |
| 712 | # or an exact flow is specified |
| 713 | # or a coin toss comes up heads), |
| 714 | # specify Q |
| 715 | # else |
| 716 | # wildcard Q |
| 717 | |
Howard Persh | c1199d5 | 2012-04-11 14:21:32 -0700 | [diff] [blame] | 718 | if wildcard_get(wildcards_force, ofp.OFPFW_IN_PORT) == 0 \ |
| 719 | and (wildcard_get(valid_wildcards, ofp.OFPFW_IN_PORT) == 0 \ |
| 720 | or exact \ |
| 721 | or flip_coin() \ |
| 722 | ): |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 723 | self.match.in_port = rand_pick(valid_ports) |
| 724 | else: |
Howard Persh | 3340d45 | 2012-04-06 16:45:21 -0700 | [diff] [blame] | 725 | self.match.wildcards = wildcard_set(self.match.wildcards, \ |
| 726 | ofp.OFPFW_IN_PORT, \ |
| 727 | 1 \ |
| 728 | ) |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 729 | |
Howard Persh | c1199d5 | 2012-04-11 14:21:32 -0700 | [diff] [blame] | 730 | if wildcard_get(wildcards_force, ofp.OFPFW_DL_DST) == 0 \ |
| 731 | and (wildcard_get(valid_wildcards, ofp.OFPFW_DL_DST) == 0 \ |
| 732 | or exact \ |
| 733 | or flip_coin() \ |
| 734 | ): |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 735 | self.match.dl_dst = fi.rand_dl_addr() |
| 736 | else: |
Howard Persh | 3340d45 | 2012-04-06 16:45:21 -0700 | [diff] [blame] | 737 | self.match.wildcards = wildcard_set(self.match.wildcards, \ |
| 738 | ofp.OFPFW_DL_DST, \ |
| 739 | 1 \ |
| 740 | ) |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 741 | |
Howard Persh | c1199d5 | 2012-04-11 14:21:32 -0700 | [diff] [blame] | 742 | if wildcard_get(wildcards_force, ofp.OFPFW_DL_SRC) == 0 \ |
| 743 | and (wildcard_get(valid_wildcards, ofp.OFPFW_DL_SRC) == 0 \ |
| 744 | or exact \ |
| 745 | or flip_coin() \ |
| 746 | ): |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 747 | self.match.dl_src = fi.rand_dl_addr() |
| 748 | else: |
Howard Persh | 3340d45 | 2012-04-06 16:45:21 -0700 | [diff] [blame] | 749 | self.match.wildcards = wildcard_set(self.match.wildcards, \ |
| 750 | ofp.OFPFW_DL_SRC, \ |
| 751 | 1 \ |
| 752 | ) |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 753 | |
Howard Persh | c1199d5 | 2012-04-11 14:21:32 -0700 | [diff] [blame] | 754 | if wildcard_get(wildcards_force, ofp.OFPFW_DL_VLAN) == 0 \ |
| 755 | and (wildcard_get(valid_wildcards, ofp.OFPFW_DL_VLAN) == 0 \ |
| 756 | or exact \ |
| 757 | or flip_coin() \ |
| 758 | ): |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 759 | self.match.dl_vlan = fi.rand_vlan() |
| 760 | else: |
Howard Persh | 3340d45 | 2012-04-06 16:45:21 -0700 | [diff] [blame] | 761 | self.match.wildcards = wildcard_set(self.match.wildcards, \ |
| 762 | ofp.OFPFW_DL_VLAN, \ |
| 763 | 1 \ |
| 764 | ) |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 765 | |
Howard Persh | c1199d5 | 2012-04-11 14:21:32 -0700 | [diff] [blame] | 766 | if wildcard_get(wildcards_force, ofp.OFPFW_DL_VLAN_PCP) == 0 \ |
| 767 | and (wildcard_get(valid_wildcards, ofp.OFPFW_DL_VLAN_PCP) == 0 \ |
| 768 | or exact \ |
| 769 | or flip_coin() \ |
| 770 | ): |
| 771 | self.match.dl_vlan_pcp = random.randint(0, (1 << 3) - 1) |
| 772 | else: |
| 773 | self.match.wildcards = wildcard_set(self.match.wildcards, \ |
| 774 | ofp.OFPFW_DL_VLAN_PCP, \ |
| 775 | 1 \ |
| 776 | ) |
| 777 | |
| 778 | if wildcard_get(wildcards_force, ofp.OFPFW_DL_TYPE) == 0 \ |
| 779 | and (wildcard_get(valid_wildcards, ofp.OFPFW_DL_TYPE) == 0 \ |
| 780 | or exact \ |
| 781 | or flip_coin() \ |
| 782 | ): |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 783 | self.match.dl_type = fi.rand_ethertype() |
| 784 | else: |
Howard Persh | 3340d45 | 2012-04-06 16:45:21 -0700 | [diff] [blame] | 785 | self.match.wildcards = wildcard_set(self.match.wildcards, \ |
| 786 | ofp.OFPFW_DL_TYPE, \ |
| 787 | 1 \ |
| 788 | ) |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 789 | |
Howard Persh | c1199d5 | 2012-04-11 14:21:32 -0700 | [diff] [blame] | 790 | n = wildcard_get(wildcards_force, ofp.OFPFW_NW_SRC_MASK) |
| 791 | if n == 0: |
| 792 | if exact or flip_coin(): |
| 793 | n = 0 |
| 794 | else: |
| 795 | n = wildcard_get(valid_wildcards, ofp.OFPFW_NW_SRC_MASK) |
| 796 | if n > 32: |
| 797 | n = 32 |
| 798 | n = random.randint(0, n) |
Howard Persh | 3340d45 | 2012-04-06 16:45:21 -0700 | [diff] [blame] | 799 | self.match.wildcards = wildcard_set(self.match.wildcards, \ |
| 800 | ofp.OFPFW_NW_SRC_MASK, \ |
| 801 | n \ |
| 802 | ) |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 803 | if n < 32: |
| 804 | self.match.nw_src = fi.rand_ip_addr() & ~((1 << n) - 1) |
| 805 | # Specifying any IP address match other than all bits |
| 806 | # don't care requires that Ethertype is one of {IP, ARP} |
| 807 | if flip_coin(): |
| 808 | self.match.dl_type = rand_pick([0x0800, 0x0806]) |
Howard Persh | 3340d45 | 2012-04-06 16:45:21 -0700 | [diff] [blame] | 809 | self.match.wildcards = wildcard_set(self.match.wildcards, \ |
| 810 | ofp.OFPFW_DL_TYPE, \ |
| 811 | 0 \ |
| 812 | ) |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 813 | |
Howard Persh | c1199d5 | 2012-04-11 14:21:32 -0700 | [diff] [blame] | 814 | n = wildcard_get(wildcards_force, ofp.OFPFW_NW_DST_MASK) |
| 815 | if n == 0: |
| 816 | if exact or flip_coin(): |
| 817 | n = 0 |
| 818 | else: |
| 819 | n = wildcard_get(valid_wildcards, ofp.OFPFW_NW_DST_MASK) |
| 820 | if n > 32: |
| 821 | n = 32 |
| 822 | n = random.randint(0, n) |
Howard Persh | 3340d45 | 2012-04-06 16:45:21 -0700 | [diff] [blame] | 823 | self.match.wildcards = wildcard_set(self.match.wildcards, \ |
| 824 | ofp.OFPFW_NW_DST_MASK, \ |
| 825 | n \ |
| 826 | ) |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 827 | if n < 32: |
| 828 | self.match.nw_dst = fi.rand_ip_addr() & ~((1 << n) - 1) |
| 829 | # Specifying any IP address match other than all bits |
| 830 | # don't care requires that Ethertype is one of {IP, ARP} |
| 831 | if flip_coin(): |
| 832 | self.match.dl_type = rand_pick([0x0800, 0x0806]) |
Howard Persh | 3340d45 | 2012-04-06 16:45:21 -0700 | [diff] [blame] | 833 | self.match.wildcards = wildcard_set(self.match.wildcards, \ |
| 834 | ofp.OFPFW_DL_TYPE, \ |
| 835 | 0 \ |
| 836 | ) |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 837 | |
Howard Persh | c1199d5 | 2012-04-11 14:21:32 -0700 | [diff] [blame] | 838 | if wildcard_get(wildcards_force, ofp.OFPFW_NW_TOS) == 0 \ |
| 839 | and (wildcard_get(valid_wildcards, ofp.OFPFW_NW_TOS) == 0 \ |
| 840 | or exact \ |
| 841 | or flip_coin() \ |
| 842 | ): |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 843 | self.match.nw_tos = fi.rand_ip_tos() |
| 844 | # Specifying a TOS value requires that Ethertype is IP |
| 845 | if flip_coin(): |
| 846 | self.match.dl_type = 0x0800 |
Howard Persh | 3340d45 | 2012-04-06 16:45:21 -0700 | [diff] [blame] | 847 | self.match.wildcards = wildcard_set(self.match.wildcards, \ |
| 848 | ofp.OFPFW_DL_TYPE, \ |
| 849 | 0 \ |
| 850 | ) |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 851 | else: |
Howard Persh | 3340d45 | 2012-04-06 16:45:21 -0700 | [diff] [blame] | 852 | self.match.wildcards = wildcard_set(self.match.wildcards, \ |
| 853 | ofp.OFPFW_NW_TOS, \ |
| 854 | 1 \ |
| 855 | ) |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 856 | |
Dan Talayco | 910a828 | 2012-04-07 00:05:20 -0700 | [diff] [blame] | 857 | # Known issue on OVS with specifying nw_proto w/o dl_type as IP |
Howard Persh | c1199d5 | 2012-04-11 14:21:32 -0700 | [diff] [blame] | 858 | if wildcard_get(wildcards_force, ofp.OFPFW_NW_PROTO) == 0 \ |
| 859 | and (wildcard_get(valid_wildcards, ofp.OFPFW_NW_PROTO) == 0 \ |
| 860 | or exact \ |
| 861 | or flip_coin() \ |
| 862 | ): |
Dan Talayco | 910a828 | 2012-04-07 00:05:20 -0700 | [diff] [blame] | 863 | self.match.nw_proto = fi.rand_ip_proto() |
| 864 | # Specifying an IP protocol requires that Ethertype is IP |
| 865 | if flip_coin(): |
| 866 | self.match.dl_type = 0x0800 |
| 867 | self.match.wildcards = wildcard_set(self.match.wildcards, \ |
| 868 | ofp.OFPFW_DL_TYPE, \ |
| 869 | 0 \ |
| 870 | ) |
| 871 | else: |
Howard Persh | 3340d45 | 2012-04-06 16:45:21 -0700 | [diff] [blame] | 872 | self.match.wildcards = wildcard_set(self.match.wildcards, \ |
| 873 | ofp.OFPFW_NW_PROTO, \ |
| 874 | 1 \ |
| 875 | ) |
Dan Talayco | 910a828 | 2012-04-07 00:05:20 -0700 | [diff] [blame] | 876 | |
Howard Persh | c1199d5 | 2012-04-11 14:21:32 -0700 | [diff] [blame] | 877 | if wildcard_get(wildcards_force, ofp.OFPFW_TP_SRC) == 0 \ |
| 878 | and (wildcard_get(valid_wildcards, ofp.OFPFW_TP_SRC) == 0 \ |
| 879 | or exact\ |
| 880 | or flip_coin() \ |
| 881 | ): |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 882 | self.match.tp_src = fi.rand_l4_port() |
| 883 | # Specifying a L4 port requires that IP protcol is |
| 884 | # one of {ICMP, TCP, UDP} |
| 885 | if flip_coin(): |
| 886 | self.match.nw_proto = rand_pick([1, 6, 17]) |
Howard Persh | 3340d45 | 2012-04-06 16:45:21 -0700 | [diff] [blame] | 887 | self.match.wildcards = wildcard_set(self.match.wildcards, \ |
| 888 | ofp.OFPFW_NW_PROTO, \ |
| 889 | 0 \ |
| 890 | ) |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 891 | # Specifying a L4 port requirues that Ethertype is IP |
| 892 | self.match.dl_type = 0x0800 |
Howard Persh | 3340d45 | 2012-04-06 16:45:21 -0700 | [diff] [blame] | 893 | self.match.wildcards = wildcard_set(self.match.wildcards, \ |
| 894 | ofp.OFPFW_DL_TYPE, \ |
| 895 | 0 \ |
| 896 | ) |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 897 | if self.match.nw_proto == 1: |
| 898 | self.match.tp_src = self.match.tp_src & 0xff |
| 899 | else: |
Howard Persh | 3340d45 | 2012-04-06 16:45:21 -0700 | [diff] [blame] | 900 | self.match.wildcards = wildcard_set(self.match.wildcards, \ |
| 901 | ofp.OFPFW_TP_SRC, \ |
| 902 | 1 \ |
| 903 | ) |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 904 | |
Howard Persh | c1199d5 | 2012-04-11 14:21:32 -0700 | [diff] [blame] | 905 | if wildcard_get(wildcards_force, ofp.OFPFW_TP_DST) == 0 \ |
| 906 | and (wildcard_get(valid_wildcards, ofp.OFPFW_TP_DST) == 0 \ |
| 907 | or exact \ |
| 908 | or flip_coin() \ |
| 909 | ): |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 910 | self.match.tp_dst = fi.rand_l4_port() |
| 911 | # Specifying a L4 port requires that IP protcol is |
| 912 | # one of {ICMP, TCP, UDP} |
| 913 | if flip_coin(): |
| 914 | self.match.nw_proto = rand_pick([1, 6, 17]) |
Howard Persh | 3340d45 | 2012-04-06 16:45:21 -0700 | [diff] [blame] | 915 | self.match.wildcards = wildcard_set(self.match.wildcards, \ |
| 916 | ofp.OFPFW_NW_PROTO, \ |
| 917 | 0 \ |
| 918 | ) |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 919 | # Specifying a L4 port requirues that Ethertype is IP |
| 920 | self.match.dl_type = 0x0800 |
Howard Persh | 3340d45 | 2012-04-06 16:45:21 -0700 | [diff] [blame] | 921 | self.match.wildcards = wildcard_set(self.match.wildcards, \ |
| 922 | ofp.OFPFW_DL_TYPE, \ |
| 923 | 0 \ |
| 924 | ) |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 925 | if self.match.nw_proto == 1: |
| 926 | self.match.tp_dst = self.match.tp_dst & 0xff |
| 927 | else: |
Howard Persh | 3340d45 | 2012-04-06 16:45:21 -0700 | [diff] [blame] | 928 | self.match.wildcards = wildcard_set(self.match.wildcards, \ |
| 929 | ofp.OFPFW_TP_DST, \ |
| 930 | 1 \ |
| 931 | ) |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 932 | |
| 933 | # If nothing is wildcarded, it is an exact flow spec -- some switches |
Howard Persh | 3340d45 | 2012-04-06 16:45:21 -0700 | [diff] [blame] | 934 | # (Open vSwitch, for one) *require* that exact flow specs |
| 935 | # have priority 65535. |
| 936 | self.priority = 65535 if self.match.wildcards == 0 \ |
| 937 | else fi.rand_priority() |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 938 | |
| 939 | # N.B. Don't make the timeout too short, else the flow might |
| 940 | # disappear before we get a chance to check for it. |
| 941 | t = random.randint(0, 65535) |
| 942 | self.idle_timeout = 0 if t < 60 else t |
| 943 | t = random.randint(0, 65535) |
| 944 | self.hard_timeout = 0 if t < 60 else t |
| 945 | |
Howard Persh | 8d21c1f | 2012-04-20 15:57:29 -0700 | [diff] [blame] | 946 | self.rand_mod(fi, valid_actions, valid_ports, valid_queues) |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 947 | |
| 948 | return self |
| 949 | |
| 950 | # Return flow cfg in canonical form |
Howard Persh | 3340d45 | 2012-04-06 16:45:21 -0700 | [diff] [blame] | 951 | # - There are dependencies between flow qualifiers, e.g. it only makes |
| 952 | # sense to qualify nw_proto if dl_type is qualified to be 0x0800 (IP). |
| 953 | # The canonical form of flow match criteria will "wildcard out" |
| 954 | # all such cases. |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 955 | def canonical(self): |
| 956 | result = copy.deepcopy(self) |
Howard Persh | 07d99e6 | 2012-04-09 15:26:57 -0700 | [diff] [blame] | 957 | |
| 958 | if wildcard_get(result.match.wildcards, ofp.OFPFW_DL_VLAN) != 0: |
| 959 | result.match.wildcards = wildcard_set(result.match.wildcards, \ |
| 960 | ofp.OFPFW_DL_VLAN_PCP, \ |
| 961 | 1 \ |
| 962 | ) |
| 963 | |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 964 | if wildcard_get(result.match.wildcards, ofp.OFPFW_DL_TYPE) != 0 \ |
| 965 | or result.match.dl_type not in [0x0800, 0x0806]: |
Howard Persh | 3340d45 | 2012-04-06 16:45:21 -0700 | [diff] [blame] | 966 | # dl_tyoe is wildcarded, or specified as something other |
| 967 | # than IP or ARP |
Howard Persh | 07d99e6 | 2012-04-09 15:26:57 -0700 | [diff] [blame] | 968 | # => nw_src, nw_dst, nw_proto cannot be specified, |
| 969 | # must be wildcarded |
Howard Persh | 3340d45 | 2012-04-06 16:45:21 -0700 | [diff] [blame] | 970 | result.match.wildcards = wildcard_set(result.match.wildcards, \ |
| 971 | ofp.OFPFW_NW_SRC_MASK, \ |
| 972 | 32 \ |
| 973 | ) |
| 974 | result.match.wildcards = wildcard_set(result.match.wildcards, \ |
| 975 | ofp.OFPFW_NW_DST_MASK, \ |
| 976 | 32 \ |
| 977 | ) |
Howard Persh | 3340d45 | 2012-04-06 16:45:21 -0700 | [diff] [blame] | 978 | result.match.wildcards = wildcard_set(result.match.wildcards, \ |
| 979 | ofp.OFPFW_NW_PROTO, \ |
| 980 | 1 \ |
| 981 | ) |
Howard Persh | 07d99e6 | 2012-04-09 15:26:57 -0700 | [diff] [blame] | 982 | |
| 983 | if wildcard_get(result.match.wildcards, ofp.OFPFW_DL_TYPE) != 0 \ |
| 984 | or result.match.dl_type != 0x0800: |
| 985 | # dl_type is wildcarded, or specified as something other than IP |
| 986 | # => nw_tos, tp_src and tp_dst cannot be specified, |
| 987 | # must be wildcarded |
Howard Persh | 3340d45 | 2012-04-06 16:45:21 -0700 | [diff] [blame] | 988 | result.match.wildcards = wildcard_set(result.match.wildcards, \ |
| 989 | ofp.OFPFW_NW_TOS, \ |
| 990 | 1 \ |
| 991 | ) |
| 992 | result.match.wildcards = wildcard_set(result.match.wildcards, \ |
| 993 | ofp.OFPFW_TP_SRC, \ |
| 994 | 1 \ |
| 995 | ) |
| 996 | result.match.wildcards = wildcard_set(result.match.wildcards, \ |
| 997 | ofp.OFPFW_TP_DST, \ |
| 998 | 1 \ |
| 999 | ) |
Howard Persh | 07d99e6 | 2012-04-09 15:26:57 -0700 | [diff] [blame] | 1000 | result.match.wildcards = wildcard_set(result.match.wildcards, \ |
| 1001 | ofp.OFPFW_NW_SRC_MASK, \ |
| 1002 | 32 \ |
| 1003 | ) |
| 1004 | result.match.wildcards = wildcard_set(result.match.wildcards, \ |
| 1005 | ofp.OFPFW_NW_DST_MASK, \ |
| 1006 | 32 \ |
| 1007 | ) |
| 1008 | result.match.wildcards = wildcard_set(result.match.wildcards, \ |
| 1009 | ofp.OFPFW_NW_PROTO, \ |
| 1010 | 1 \ |
| 1011 | ) |
| 1012 | |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1013 | if wildcard_get(result.match.wildcards, ofp.OFPFW_NW_PROTO) != 0 \ |
| 1014 | or result.match.nw_proto not in [1, 6, 17]: |
Howard Persh | 3340d45 | 2012-04-06 16:45:21 -0700 | [diff] [blame] | 1015 | # nw_proto is wildcarded, or specified as something other than ICMP, |
| 1016 | # TCP or UDP |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1017 | # => tp_src and tp_dst cannot be specified, must be wildcarded |
Howard Persh | 3340d45 | 2012-04-06 16:45:21 -0700 | [diff] [blame] | 1018 | result.match.wildcards = wildcard_set(result.match.wildcards, \ |
| 1019 | ofp.OFPFW_TP_SRC, \ |
| 1020 | 1 \ |
| 1021 | ) |
| 1022 | result.match.wildcards = wildcard_set(result.match.wildcards, \ |
| 1023 | ofp.OFPFW_TP_DST, \ |
| 1024 | 1 \ |
| 1025 | ) |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1026 | return result |
| 1027 | |
Howard Persh | 680b92a | 2012-03-31 13:34:35 -0700 | [diff] [blame] | 1028 | # Overlap check |
| 1029 | # delf == True <=> Check for delete overlap, else add overlap |
| 1030 | # "Add overlap" is defined as there exists a packet that could match both the |
| 1031 | # receiver and argument flowspecs |
| 1032 | # "Delete overlap" is defined as the specificity of the argument flowspec |
| 1033 | # is greater than or equal to the specificity of the receiver flowspec |
| 1034 | def overlaps(self, x, delf): |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1035 | if wildcard_get(self.match.wildcards, ofp.OFPFW_IN_PORT) == 0: |
| 1036 | if wildcard_get(x.match.wildcards, ofp.OFPFW_IN_PORT) == 0: |
Howard Persh | 680b92a | 2012-03-31 13:34:35 -0700 | [diff] [blame] | 1037 | if self.match.in_port != x.match.in_port: |
| 1038 | return False # Both specified, and not equal |
| 1039 | elif delf: |
| 1040 | return False # Receiver more specific |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1041 | if wildcard_get(self.match.wildcards, ofp.OFPFW_DL_VLAN) == 0: |
| 1042 | if wildcard_get(x.match.wildcards, ofp.OFPFW_DL_VLAN) == 0: |
Howard Persh | 680b92a | 2012-03-31 13:34:35 -0700 | [diff] [blame] | 1043 | if self.match.dl_vlan != x.match.dl_vlan: |
| 1044 | return False # Both specified, and not equal |
| 1045 | elif delf: |
| 1046 | return False # Receiver more specific |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1047 | if wildcard_get(self.match.wildcards, ofp.OFPFW_DL_SRC) == 0: |
| 1048 | if wildcard_get(x.match.wildcards, ofp.OFPFW_DL_SRC) == 0: |
Howard Persh | 680b92a | 2012-03-31 13:34:35 -0700 | [diff] [blame] | 1049 | if self.match.dl_src != x.match.dl_src: |
| 1050 | return False # Both specified, and not equal |
| 1051 | elif delf: |
| 1052 | return False # Receiver more specific |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1053 | if wildcard_get(self.match.wildcards, ofp.OFPFW_DL_DST) == 0: |
| 1054 | if wildcard_get(x.match.wildcards, ofp.OFPFW_DL_DST) == 0: |
Howard Persh | 680b92a | 2012-03-31 13:34:35 -0700 | [diff] [blame] | 1055 | if self.match.dl_dst != x.match.dl_dst: |
| 1056 | return False # Both specified, and not equal |
| 1057 | elif delf: |
| 1058 | return False # Receiver more specific |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1059 | if wildcard_get(self.match.wildcards, ofp.OFPFW_DL_TYPE) == 0: |
| 1060 | if wildcard_get(x.match.wildcards, ofp.OFPFW_DL_TYPE) == 0: |
Howard Persh | 680b92a | 2012-03-31 13:34:35 -0700 | [diff] [blame] | 1061 | if self.match.dl_type != x.match.dl_type: |
| 1062 | return False # Both specified, and not equal |
| 1063 | elif delf: |
| 1064 | return False # Recevier more specific |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1065 | if wildcard_get(self.match.wildcards, ofp.OFPFW_NW_PROTO) == 0: |
| 1066 | if wildcard_get(x.match.wildcards, ofp.OFPFW_NW_PROTO) == 0: |
Howard Persh | 680b92a | 2012-03-31 13:34:35 -0700 | [diff] [blame] | 1067 | if self.match.nw_proto != x.match.nw_proto: |
| 1068 | return False # Both specified, and not equal |
| 1069 | elif delf: |
| 1070 | return False # Receiver more specific |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1071 | if wildcard_get(self.match.wildcards, ofp.OFPFW_TP_SRC) == 0: |
| 1072 | if wildcard_get(x.match.wildcards, ofp.OFPFW_TP_SRC) == 0: |
Howard Persh | 680b92a | 2012-03-31 13:34:35 -0700 | [diff] [blame] | 1073 | if self.match.tp_src != x.match.tp_src: |
| 1074 | return False # Both specified, and not equal |
| 1075 | elif delf: |
| 1076 | return False # Receiver more specific |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1077 | if wildcard_get(self.match.wildcards, ofp.OFPFW_TP_DST) == 0: |
| 1078 | if wildcard_get(x.match.wildcards, ofp.OFPFW_TP_DST) == 0: |
Howard Persh | 680b92a | 2012-03-31 13:34:35 -0700 | [diff] [blame] | 1079 | if self.match.tp_dst != x.match.tp_dst: |
| 1080 | return False # Both specified, and not equal |
| 1081 | elif delf: |
| 1082 | return False # Receiver more specific |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1083 | na = wildcard_get(self.match.wildcards, ofp.OFPFW_NW_SRC_MASK) |
| 1084 | nb = wildcard_get(x.match.wildcards, ofp.OFPFW_NW_SRC_MASK) |
Howard Persh | 680b92a | 2012-03-31 13:34:35 -0700 | [diff] [blame] | 1085 | if delf and na < nb: |
| 1086 | return False # Receiver more specific |
Howard Persh | c796358 | 2012-03-29 10:02:59 -0700 | [diff] [blame] | 1087 | if (na < 32 and nb < 32): |
| 1088 | m = ~((1 << na) - 1) & ~((1 << nb) - 1) |
| 1089 | if (self.match.nw_src & m) != (x.match.nw_src & m): |
Howard Persh | 680b92a | 2012-03-31 13:34:35 -0700 | [diff] [blame] | 1090 | return False # Overlapping bits not equal |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1091 | na = wildcard_get(self.match.wildcards, ofp.OFPFW_NW_DST_MASK) |
| 1092 | nb = wildcard_get(x.match.wildcards, ofp.OFPFW_NW_DST_MASK) |
Howard Persh | 680b92a | 2012-03-31 13:34:35 -0700 | [diff] [blame] | 1093 | if delf and na < nb: |
| 1094 | return False # Receiver more specific |
Howard Persh | c796358 | 2012-03-29 10:02:59 -0700 | [diff] [blame] | 1095 | if (na < 32 and nb < 32): |
| 1096 | m = ~((1 << na) - 1) & ~((1 << nb) - 1) |
| 1097 | if (self.match.nw_dst & m) != (x.match.nw_dst & m): |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1098 | return False # Overlapping bits not equal |
| 1099 | if wildcard_get(self.match.wildcards, ofp.OFPFW_DL_VLAN_PCP) == 0: |
| 1100 | if wildcard_get(x.match.wildcards, ofp.OFPFW_DL_VLAN_PCP) == 0: |
Howard Persh | 680b92a | 2012-03-31 13:34:35 -0700 | [diff] [blame] | 1101 | if self.match.dl_vlan_pcp != x.match.dl_vlan_pcp: |
| 1102 | return False # Both specified, and not equal |
| 1103 | elif delf: |
| 1104 | return False # Receiver more specific |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1105 | if wildcard_get(self.match.wildcards, ofp.OFPFW_NW_TOS) == 0: |
| 1106 | if wildcard_get(x.match.wildcards, ofp.OFPFW_NW_TOS) == 0: |
Howard Persh | 680b92a | 2012-03-31 13:34:35 -0700 | [diff] [blame] | 1107 | if self.match.nw_tos != x.match.nw_tos: |
| 1108 | return False # Both specified, and not equal |
| 1109 | elif delf: |
| 1110 | return False # Receiver more specific |
| 1111 | return True # Flows overlap |
Howard Persh | c796358 | 2012-03-29 10:02:59 -0700 | [diff] [blame] | 1112 | |
| 1113 | def to_flow_mod_msg(self, msg): |
| 1114 | msg.match = self.match |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1115 | msg.cookie = self.cookie |
Howard Persh | c796358 | 2012-03-29 10:02:59 -0700 | [diff] [blame] | 1116 | msg.idle_timeout = self.idle_timeout |
| 1117 | msg.hard_timeout = self.hard_timeout |
| 1118 | msg.priority = self.priority |
| 1119 | msg.actions = self.actions |
| 1120 | return msg |
| 1121 | |
| 1122 | def from_flow_stat(self, msg): |
| 1123 | self.match = msg.match |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1124 | self.cookie = msg.cookie |
Howard Persh | c796358 | 2012-03-29 10:02:59 -0700 | [diff] [blame] | 1125 | self.idle_timeout = msg.idle_timeout |
| 1126 | self.hard_timeout = msg.hard_timeout |
| 1127 | self.priority = msg.priority |
| 1128 | self.actions = msg.actions |
| 1129 | |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1130 | def from_flow_rem(self, msg): |
| 1131 | self.match = msg.match |
| 1132 | self.idle_timeout = msg.idle_timeout |
| 1133 | self.priority = msg.priority |
Howard Persh | c796358 | 2012-03-29 10:02:59 -0700 | [diff] [blame] | 1134 | |
Howard Persh | c796358 | 2012-03-29 10:02:59 -0700 | [diff] [blame] | 1135 | |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1136 | class Flow_Tbl: |
| 1137 | def clear(self): |
| 1138 | self.dict = {} |
Howard Persh | 680b92a | 2012-03-31 13:34:35 -0700 | [diff] [blame] | 1139 | |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1140 | def __init__(self): |
| 1141 | self.clear() |
Howard Persh | 680b92a | 2012-03-31 13:34:35 -0700 | [diff] [blame] | 1142 | |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1143 | def find(self, f): |
root | 2843d2b | 2012-04-06 10:27:46 -0700 | [diff] [blame] | 1144 | return self.dict.get(f.key_str(), None) |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1145 | |
| 1146 | def insert(self, f): |
root | 2843d2b | 2012-04-06 10:27:46 -0700 | [diff] [blame] | 1147 | self.dict[f.key_str()] = f |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1148 | |
| 1149 | def delete(self, f): |
root | 2843d2b | 2012-04-06 10:27:46 -0700 | [diff] [blame] | 1150 | del self.dict[f.key_str()] |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1151 | |
| 1152 | def values(self): |
| 1153 | return self.dict.values() |
| 1154 | |
| 1155 | def count(self): |
| 1156 | return len(self.dict) |
| 1157 | |
Ed Swierk | 99a74de | 2012-08-22 06:40:54 -0700 | [diff] [blame] | 1158 | def rand(self, wildcards_force, sw, fi, num_flows): |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1159 | self.clear() |
| 1160 | i = 0 |
| 1161 | tbl = 0 |
| 1162 | j = 0 |
| 1163 | while i < num_flows: |
| 1164 | fc = Flow_Cfg() |
| 1165 | fc.rand(fi, \ |
Ed Swierk | 99a74de | 2012-08-22 06:40:54 -0700 | [diff] [blame] | 1166 | wildcards_force, \ |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1167 | sw.tbl_stats.stats[tbl].wildcards, \ |
| 1168 | sw.sw_features.actions, \ |
Howard Persh | 8d21c1f | 2012-04-20 15:57:29 -0700 | [diff] [blame] | 1169 | sw.valid_ports, \ |
| 1170 | sw.valid_queues \ |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1171 | ) |
| 1172 | fc = fc.canonical() |
| 1173 | if self.find(fc): |
| 1174 | continue |
| 1175 | fc.send_rem = False |
| 1176 | self.insert(fc) |
| 1177 | i = i + 1 |
| 1178 | j = j + 1 |
| 1179 | if j >= sw.tbl_stats.stats[tbl].max_entries: |
| 1180 | tbl = tbl + 1 |
| 1181 | j = 0 |
| 1182 | |
| 1183 | |
| 1184 | class Switch: |
| 1185 | # Members: |
Howard Persh | 8d21c1f | 2012-04-20 15:57:29 -0700 | [diff] [blame] | 1186 | # controller - switch's test controller |
| 1187 | # sw_features - switch's OFPT_FEATURES_REPLY message |
| 1188 | # valid_ports - list of valid port numbers |
| 1189 | # valid_queues - list of valid [port, queue] pairs |
| 1190 | # tbl_stats - switch's OFPT_STATS_REPLY message, for table stats request |
| 1191 | # queue_stats - switch's OFPT_STATS_REPLY message, for queue stats request |
| 1192 | # flow_stats - switch's OFPT_STATS_REPLY message, for flow stats request |
| 1193 | # flow_tbl - (test's idea of) switch's flow table |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1194 | |
| 1195 | def __init__(self): |
Howard Persh | 8d21c1f | 2012-04-20 15:57:29 -0700 | [diff] [blame] | 1196 | self.controller = None |
| 1197 | self.sw_features = None |
| 1198 | self.valid_ports = [] |
| 1199 | self.valid_queues = [] |
| 1200 | self.tbl_stats = None |
| 1201 | self.flow_stats = None |
| 1202 | self.flow_tbl = Flow_Tbl() |
Ed Swierk | 99a74de | 2012-08-22 06:40:54 -0700 | [diff] [blame] | 1203 | self.error_msgs = [] |
| 1204 | self.removed_msgs = [] |
| 1205 | |
| 1206 | def error_handler(self, controller, msg, rawmsg): |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 1207 | logging.info("Got an ERROR message, type=%d, code=%d" \ |
Ed Swierk | 99a74de | 2012-08-22 06:40:54 -0700 | [diff] [blame] | 1208 | % (msg.type, msg.code) \ |
| 1209 | ) |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 1210 | logging.info("Message header:") |
| 1211 | logging.info(msg.header.show()) |
Ed Swierk | 99a74de | 2012-08-22 06:40:54 -0700 | [diff] [blame] | 1212 | self.error_msgs.append(msg) |
| 1213 | |
| 1214 | def removed_handler(self, controller, msg, rawmsg): |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 1215 | logging.info("Got a REMOVED message") |
| 1216 | logging.info("Message header:") |
| 1217 | logging.info(msg.header.show()) |
Ed Swierk | 99a74de | 2012-08-22 06:40:54 -0700 | [diff] [blame] | 1218 | self.removed_msgs.append(msg) |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1219 | |
Howard Persh | 3340d45 | 2012-04-06 16:45:21 -0700 | [diff] [blame] | 1220 | def controller_set(self, controller): |
| 1221 | self.controller = controller |
| 1222 | # Register error message handler |
Ed Swierk | 99a74de | 2012-08-22 06:40:54 -0700 | [diff] [blame] | 1223 | self.error_msgs = [] |
| 1224 | self.removed_msgs = [] |
| 1225 | controller.register(ofp.OFPT_ERROR, self.error_handler) |
| 1226 | controller.register(ofp.OFPT_FLOW_REMOVED, self.removed_handler) |
Howard Persh | 3340d45 | 2012-04-06 16:45:21 -0700 | [diff] [blame] | 1227 | |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1228 | def features_get(self): |
| 1229 | # Get switch features |
| 1230 | request = message.features_request() |
Rich Lane | c8aaa3e | 2012-07-26 19:28:02 -0700 | [diff] [blame] | 1231 | (self.sw_features, pkt) = self.controller.transact(request) |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1232 | if self.sw_features is None: |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 1233 | logging.error("Get switch features failed") |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1234 | return False |
| 1235 | self.valid_ports = map(lambda x: x.port_no, self.sw_features.ports) |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 1236 | logging.info("Ports reported by switch:") |
| 1237 | logging.info(self.valid_ports) |
Rich Lane | 2014f9b | 2012-10-05 15:29:40 -0700 | [diff] [blame] | 1238 | ports_override = test_param_get("ports", []) |
Howard Persh | 8d21c1f | 2012-04-20 15:57:29 -0700 | [diff] [blame] | 1239 | if ports_override != []: |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 1240 | logging.info("Overriding ports to:") |
| 1241 | logging.info(ports_override) |
Howard Persh | 8d21c1f | 2012-04-20 15:57:29 -0700 | [diff] [blame] | 1242 | self.valid_ports = ports_override |
| 1243 | |
Howard Persh | 3340d45 | 2012-04-06 16:45:21 -0700 | [diff] [blame] | 1244 | # TBD - OFPP_LOCAL is returned by OVS is switch features -- |
| 1245 | # is that universal? |
| 1246 | |
| 1247 | # TBD - There seems to be variability in which switches support which |
| 1248 | # ports; need to sort that out |
| 1249 | # TBD - Is it legal to enqueue to a special port? Depends on switch? |
| 1250 | # self.valid_ports.extend([ofp.OFPP_IN_PORT, \ |
| 1251 | # ofp.OFPP_NORMAL, \ |
| 1252 | # ofp.OFPP_FLOOD, \ |
| 1253 | # ofp.OFPP_ALL, \ |
| 1254 | # ofp.OFPP_CONTROLLER \ |
| 1255 | # ] \ |
| 1256 | # ) |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 1257 | logging.info("Supported actions reported by switch:") |
| 1258 | logging.info("0x%x=%s" \ |
Howard Persh | 8d21c1f | 2012-04-20 15:57:29 -0700 | [diff] [blame] | 1259 | % (self.sw_features.actions, \ |
| 1260 | actions_bmap_to_str(self.sw_features.actions) \ |
| 1261 | ) \ |
| 1262 | ) |
Rich Lane | 2014f9b | 2012-10-05 15:29:40 -0700 | [diff] [blame] | 1263 | actions_override = test_param_get("actions", -1) |
Howard Persh | 07d99e6 | 2012-04-09 15:26:57 -0700 | [diff] [blame] | 1264 | if actions_override != -1: |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 1265 | logging.info("Overriding supported actions to:") |
| 1266 | logging.info(actions_bmap_to_str(actions_override)) |
Howard Persh | 07d99e6 | 2012-04-09 15:26:57 -0700 | [diff] [blame] | 1267 | self.sw_features.actions = actions_override |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1268 | return True |
| 1269 | |
| 1270 | def tbl_stats_get(self): |
| 1271 | # Get table stats |
Howard Persh | 680b92a | 2012-03-31 13:34:35 -0700 | [diff] [blame] | 1272 | request = message.table_stats_request() |
Rich Lane | c8aaa3e | 2012-07-26 19:28:02 -0700 | [diff] [blame] | 1273 | (self.tbl_stats, pkt) = self.controller.transact(request) |
Howard Persh | 07d99e6 | 2012-04-09 15:26:57 -0700 | [diff] [blame] | 1274 | if self.tbl_stats is None: |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 1275 | logging.error("Get table stats failed") |
Howard Persh | 07d99e6 | 2012-04-09 15:26:57 -0700 | [diff] [blame] | 1276 | return False |
Howard Persh | 8d21c1f | 2012-04-20 15:57:29 -0700 | [diff] [blame] | 1277 | i = 0 |
Howard Persh | 07d99e6 | 2012-04-09 15:26:57 -0700 | [diff] [blame] | 1278 | for ts in self.tbl_stats.stats: |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 1279 | logging.info("Supported wildcards for table %d reported by switch:" |
Howard Persh | 8d21c1f | 2012-04-20 15:57:29 -0700 | [diff] [blame] | 1280 | % (i) |
| 1281 | ) |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 1282 | logging.info("0x%x=%s" \ |
Howard Persh | 8d21c1f | 2012-04-20 15:57:29 -0700 | [diff] [blame] | 1283 | % (ts.wildcards, \ |
| 1284 | wildcards_to_str(ts.wildcards) \ |
| 1285 | ) \ |
| 1286 | ) |
Rich Lane | 2014f9b | 2012-10-05 15:29:40 -0700 | [diff] [blame] | 1287 | wildcards_override = test_param_get("wildcards", -1) |
Howard Persh | 07d99e6 | 2012-04-09 15:26:57 -0700 | [diff] [blame] | 1288 | if wildcards_override != -1: |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 1289 | logging.info("Overriding supported wildcards for table %d to:" |
Howard Persh | 8d21c1f | 2012-04-20 15:57:29 -0700 | [diff] [blame] | 1290 | % (i) |
| 1291 | ) |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 1292 | logging.info(wildcards_to_str(wildcards_override)) |
Howard Persh | 07d99e6 | 2012-04-09 15:26:57 -0700 | [diff] [blame] | 1293 | ts.wildcards = wildcards_override |
Howard Persh | 8d21c1f | 2012-04-20 15:57:29 -0700 | [diff] [blame] | 1294 | i = i + 1 |
Howard Persh | 07d99e6 | 2012-04-09 15:26:57 -0700 | [diff] [blame] | 1295 | return True |
Howard Persh | 680b92a | 2012-03-31 13:34:35 -0700 | [diff] [blame] | 1296 | |
Howard Persh | 8d21c1f | 2012-04-20 15:57:29 -0700 | [diff] [blame] | 1297 | def queue_stats_get(self): |
| 1298 | # Get queue stats |
| 1299 | request = message.queue_stats_request() |
| 1300 | request.port_no = ofp.OFPP_ALL |
| 1301 | request.queue_id = ofp.OFPQ_ALL |
Rich Lane | c8aaa3e | 2012-07-26 19:28:02 -0700 | [diff] [blame] | 1302 | (self.queue_stats, pkt) = self.controller.transact(request) |
Howard Persh | 8d21c1f | 2012-04-20 15:57:29 -0700 | [diff] [blame] | 1303 | if self.queue_stats is None: |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 1304 | logging.error("Get queue stats failed") |
Howard Persh | 8d21c1f | 2012-04-20 15:57:29 -0700 | [diff] [blame] | 1305 | return False |
| 1306 | self.valid_queues = map(lambda x: (x.port_no, x.queue_id), \ |
| 1307 | self.queue_stats.stats \ |
| 1308 | ) |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 1309 | logging.info("(Port, queue) pairs reported by switch:") |
| 1310 | logging.info(self.valid_queues) |
Rich Lane | 2014f9b | 2012-10-05 15:29:40 -0700 | [diff] [blame] | 1311 | queues_override = test_param_get("queues", []) |
Howard Persh | 8d21c1f | 2012-04-20 15:57:29 -0700 | [diff] [blame] | 1312 | if queues_override != []: |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 1313 | logging.info("Overriding (port, queue) pairs to:") |
| 1314 | logging.info(queues_override) |
Howard Persh | 8d21c1f | 2012-04-20 15:57:29 -0700 | [diff] [blame] | 1315 | self.valid_queues = queues_override |
| 1316 | return True |
| 1317 | |
| 1318 | def connect(self, controller): |
| 1319 | # Connect to controller, and get all switch capabilities |
| 1320 | self.controller_set(controller) |
| 1321 | return (self.features_get() \ |
| 1322 | and self.tbl_stats_get() \ |
| 1323 | and self.queue_stats_get() \ |
| 1324 | ) |
| 1325 | |
Howard Persh | c1199d5 | 2012-04-11 14:21:32 -0700 | [diff] [blame] | 1326 | def flow_stats_get(self, limit = 10000): |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1327 | request = message.flow_stats_request() |
Howard Persh | 680b92a | 2012-03-31 13:34:35 -0700 | [diff] [blame] | 1328 | query_match = ofp.ofp_match() |
| 1329 | query_match.wildcards = ofp.OFPFW_ALL |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1330 | request.match = query_match |
| 1331 | request.table_id = 0xff |
| 1332 | request.out_port = ofp.OFPP_NONE; |
Rich Lane | 5c3151c | 2013-01-03 17:15:41 -0800 | [diff] [blame] | 1333 | self.controller.message_send(request) |
Howard Persh | 3340d45 | 2012-04-06 16:45:21 -0700 | [diff] [blame] | 1334 | # <TBD> |
| 1335 | # Glue together successive reponse messages for stats reply. |
| 1336 | # Looking at the "more" flag and performing re-assembly |
| 1337 | # should be a part of the infrastructure. |
| 1338 | # </TBD> |
| 1339 | n = 0 |
| 1340 | while True: |
Dan Talayco | c689a79 | 2012-09-28 14:22:53 -0700 | [diff] [blame] | 1341 | (resp, pkt) = self.controller.poll(ofp.OFPT_STATS_REPLY) |
Howard Persh | 3340d45 | 2012-04-06 16:45:21 -0700 | [diff] [blame] | 1342 | if resp is None: |
Howard Persh | c1199d5 | 2012-04-11 14:21:32 -0700 | [diff] [blame] | 1343 | return False # Did not get expected response |
Howard Persh | 3340d45 | 2012-04-06 16:45:21 -0700 | [diff] [blame] | 1344 | if n == 0: |
| 1345 | self.flow_stats = resp |
| 1346 | else: |
| 1347 | self.flow_stats.stats.extend(resp.stats) |
| 1348 | n = n + 1 |
Howard Persh | c1199d5 | 2012-04-11 14:21:32 -0700 | [diff] [blame] | 1349 | if len(self.flow_stats.stats) > limit: |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 1350 | logging.error("Too many flows returned") |
Howard Persh | c1199d5 | 2012-04-11 14:21:32 -0700 | [diff] [blame] | 1351 | return False |
| 1352 | if (resp.flags & 1) == 0: |
| 1353 | break # No more responses expected |
Howard Persh | 3340d45 | 2012-04-06 16:45:21 -0700 | [diff] [blame] | 1354 | return (n > 0) |
Howard Persh | 680b92a | 2012-03-31 13:34:35 -0700 | [diff] [blame] | 1355 | |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1356 | def flow_add(self, flow_cfg, overlapf = False): |
Howard Persh | 680b92a | 2012-03-31 13:34:35 -0700 | [diff] [blame] | 1357 | flow_mod_msg = message.flow_mod() |
| 1358 | flow_mod_msg.command = ofp.OFPFC_ADD |
| 1359 | flow_mod_msg.buffer_id = 0xffffffff |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1360 | flow_cfg.to_flow_mod_msg(flow_mod_msg) |
Howard Persh | 680b92a | 2012-03-31 13:34:35 -0700 | [diff] [blame] | 1361 | if overlapf: |
| 1362 | flow_mod_msg.flags = flow_mod_msg.flags | ofp.OFPFF_CHECK_OVERLAP |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1363 | if flow_cfg.send_rem: |
Howard Persh | 3340d45 | 2012-04-06 16:45:21 -0700 | [diff] [blame] | 1364 | flow_mod_msg.flags = flow_mod_msg.flags | ofp.OFPFF_SEND_FLOW_REM |
Howard Persh | 07d99e6 | 2012-04-09 15:26:57 -0700 | [diff] [blame] | 1365 | flow_mod_msg.header.xid = random.randrange(1,0xffffffff) |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 1366 | logging.info("Sending flow_mod(add), xid=%d" |
Howard Persh | c1199d5 | 2012-04-11 14:21:32 -0700 | [diff] [blame] | 1367 | % (flow_mod_msg.header.xid) |
| 1368 | ) |
Rich Lane | 5c3151c | 2013-01-03 17:15:41 -0800 | [diff] [blame] | 1369 | self.controller.message_send(flow_mod_msg) |
| 1370 | return True |
Howard Persh | 680b92a | 2012-03-31 13:34:35 -0700 | [diff] [blame] | 1371 | |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1372 | def flow_mod(self, flow_cfg, strictf): |
Howard Persh | 680b92a | 2012-03-31 13:34:35 -0700 | [diff] [blame] | 1373 | flow_mod_msg = message.flow_mod() |
Howard Persh | 3340d45 | 2012-04-06 16:45:21 -0700 | [diff] [blame] | 1374 | flow_mod_msg.command = ofp.OFPFC_MODIFY_STRICT if strictf \ |
| 1375 | else ofp.OFPFC_MODIFY |
Howard Persh | 680b92a | 2012-03-31 13:34:35 -0700 | [diff] [blame] | 1376 | flow_mod_msg.buffer_id = 0xffffffff |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1377 | flow_cfg.to_flow_mod_msg(flow_mod_msg) |
Howard Persh | 07d99e6 | 2012-04-09 15:26:57 -0700 | [diff] [blame] | 1378 | flow_mod_msg.header.xid = random.randrange(1,0xffffffff) |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 1379 | logging.info("Sending flow_mod(mod), xid=%d" |
Howard Persh | c1199d5 | 2012-04-11 14:21:32 -0700 | [diff] [blame] | 1380 | % (flow_mod_msg.header.xid) |
| 1381 | ) |
Rich Lane | 5c3151c | 2013-01-03 17:15:41 -0800 | [diff] [blame] | 1382 | self.controller.message_send(flow_mod_msg) |
| 1383 | return True |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1384 | |
| 1385 | def flow_del(self, flow_cfg, strictf): |
| 1386 | flow_mod_msg = message.flow_mod() |
Howard Persh | 3340d45 | 2012-04-06 16:45:21 -0700 | [diff] [blame] | 1387 | flow_mod_msg.command = ofp.OFPFC_DELETE_STRICT if strictf \ |
| 1388 | else ofp.OFPFC_DELETE |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1389 | flow_mod_msg.buffer_id = 0xffffffff |
| 1390 | # TBD - "out_port" filtering of deletes needs to be tested |
Howard Persh | 680b92a | 2012-03-31 13:34:35 -0700 | [diff] [blame] | 1391 | flow_mod_msg.out_port = ofp.OFPP_NONE |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1392 | flow_cfg.to_flow_mod_msg(flow_mod_msg) |
Howard Persh | 07d99e6 | 2012-04-09 15:26:57 -0700 | [diff] [blame] | 1393 | flow_mod_msg.header.xid = random.randrange(1,0xffffffff) |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 1394 | logging.info("Sending flow_mod(del), xid=%d" |
Howard Persh | c1199d5 | 2012-04-11 14:21:32 -0700 | [diff] [blame] | 1395 | % (flow_mod_msg.header.xid) |
| 1396 | ) |
Rich Lane | 5c3151c | 2013-01-03 17:15:41 -0800 | [diff] [blame] | 1397 | self.controller.message_send(flow_mod_msg) |
| 1398 | return True |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1399 | |
| 1400 | def barrier(self): |
| 1401 | barrier = message.barrier_request() |
Dan Talayco | c689a79 | 2012-09-28 14:22:53 -0700 | [diff] [blame] | 1402 | (resp, pkt) = self.controller.transact(barrier, 30) |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1403 | return (resp is not None) |
| 1404 | |
Howard Persh | 3340d45 | 2012-04-06 16:45:21 -0700 | [diff] [blame] | 1405 | def errors_verify(self, num_exp, type = 0, code = 0): |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1406 | result = True |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 1407 | logging.info("Expecting %d error messages" % (num_exp)) |
Ed Swierk | 99a74de | 2012-08-22 06:40:54 -0700 | [diff] [blame] | 1408 | num_got = len(self.error_msgs) |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 1409 | logging.info("Got %d error messages" % (num_got)) |
Howard Persh | 3340d45 | 2012-04-06 16:45:21 -0700 | [diff] [blame] | 1410 | if num_got != num_exp: |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 1411 | logging.error("Incorrect number of error messages received") |
Howard Persh | 3340d45 | 2012-04-06 16:45:21 -0700 | [diff] [blame] | 1412 | result = False |
| 1413 | if num_exp == 0: |
| 1414 | return result |
| 1415 | elif num_exp == 1: |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 1416 | logging.info("Expecting error message, type=%d, code=%d" \ |
Howard Persh | 3340d45 | 2012-04-06 16:45:21 -0700 | [diff] [blame] | 1417 | % (type, code) \ |
| 1418 | ) |
| 1419 | f = False |
Ed Swierk | 99a74de | 2012-08-22 06:40:54 -0700 | [diff] [blame] | 1420 | for e in self.error_msgs: |
Howard Persh | 3340d45 | 2012-04-06 16:45:21 -0700 | [diff] [blame] | 1421 | if e.type == type and e.code == code: |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 1422 | logging.info("Got it") |
Howard Persh | 3340d45 | 2012-04-06 16:45:21 -0700 | [diff] [blame] | 1423 | f = True |
| 1424 | if not f: |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 1425 | logging.error("Did not get it") |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1426 | result = False |
Howard Persh | 3340d45 | 2012-04-06 16:45:21 -0700 | [diff] [blame] | 1427 | else: |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 1428 | logging.error("Can't expect more than 1 error message type") |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1429 | result = False |
| 1430 | return result |
| 1431 | |
Howard Persh | 3340d45 | 2012-04-06 16:45:21 -0700 | [diff] [blame] | 1432 | def removed_verify(self, num_exp): |
| 1433 | result = True |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 1434 | logging.info("Expecting %d removed messages" % (num_exp)) |
Ed Swierk | 99a74de | 2012-08-22 06:40:54 -0700 | [diff] [blame] | 1435 | num_got = len(self.removed_msgs) |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 1436 | logging.info("Got %d removed messages" % (num_got)) |
Howard Persh | 3340d45 | 2012-04-06 16:45:21 -0700 | [diff] [blame] | 1437 | if num_got != num_exp: |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 1438 | logging.error("Incorrect number of removed messages received") |
Howard Persh | 3340d45 | 2012-04-06 16:45:21 -0700 | [diff] [blame] | 1439 | result = False |
| 1440 | if num_exp < 2: |
| 1441 | return result |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 1442 | logging.error("Can't expect more than 1 error message type") |
Howard Persh | 3340d45 | 2012-04-06 16:45:21 -0700 | [diff] [blame] | 1443 | return False |
| 1444 | |
Howard Persh | 5f3c83f | 2012-04-13 09:57:10 -0700 | [diff] [blame] | 1445 | # modf == True <=> Verify for flow modify, else for add/delete |
| 1446 | def flow_tbl_verify(self, modf = False): |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1447 | result = True |
| 1448 | |
| 1449 | # Verify flow count in switch |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 1450 | logging.info("Reading table stats") |
| 1451 | logging.info("Expecting %d flows" % (self.flow_tbl.count())) |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1452 | if not self.tbl_stats_get(): |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 1453 | logging.error("Get table stats failed") |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1454 | return False |
| 1455 | n = 0 |
| 1456 | for ts in self.tbl_stats.stats: |
| 1457 | n = n + ts.active_count |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 1458 | logging.info("Table stats reported %d active flows" \ |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1459 | % (n) \ |
| 1460 | ) |
| 1461 | if n != self.flow_tbl.count(): |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 1462 | logging.error("Incorrect number of active flows reported") |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1463 | result = False |
| 1464 | |
| 1465 | # Read flows from switch |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 1466 | logging.info("Retrieving flows from switch") |
| 1467 | logging.info("Expecting %d flows" % (self.flow_tbl.count())) |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1468 | if not self.flow_stats_get(): |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 1469 | logging.error("Get flow stats failed") |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1470 | return False |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 1471 | logging.info("Retrieved %d flows" % (len(self.flow_stats.stats))) |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1472 | |
| 1473 | # Verify flows returned by switch |
| 1474 | |
| 1475 | if len(self.flow_stats.stats) != self.flow_tbl.count(): |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 1476 | logging.error("Switch reported incorrect number of flows") |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1477 | result = False |
| 1478 | |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 1479 | logging.info("Verifying received flows") |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1480 | for fc in self.flow_tbl.values(): |
| 1481 | fc.matched = False |
| 1482 | for fs in self.flow_stats.stats: |
| 1483 | flow_in = Flow_Cfg() |
| 1484 | flow_in.from_flow_stat(fs) |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 1485 | logging.info("Received flow:") |
| 1486 | logging.info(str(flow_in)) |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1487 | fc = self.flow_tbl.find(flow_in) |
| 1488 | if fc is None: |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 1489 | logging.error("Received flow:") |
| 1490 | logging.error(str(flow_in)) |
| 1491 | logging.error("does not match any defined flow") |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1492 | result = False |
| 1493 | elif fc.matched: |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 1494 | logging.error("Received flow:") |
| 1495 | logging.error(str(flow_in)) |
| 1496 | logging.error("re-matches defined flow:") |
| 1497 | logging.info(str(fc)) |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1498 | result = False |
| 1499 | else: |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 1500 | logging.info("matched") |
Howard Persh | 5f3c83f | 2012-04-13 09:57:10 -0700 | [diff] [blame] | 1501 | if modf: |
| 1502 | # Check for modify |
| 1503 | |
| 1504 | if flow_in.cookie != fc.cookie: |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 1505 | logging.warning("Defined flow:") |
| 1506 | logging.warning(str(fc)) |
| 1507 | logging.warning("Received flow:") |
| 1508 | logging.warning(str(flow_in)) |
| 1509 | logging.warning("cookies do not match") |
Howard Persh | 5f3c83f | 2012-04-13 09:57:10 -0700 | [diff] [blame] | 1510 | if not flow_in.actions_equal(fc): |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 1511 | logging.error("Defined flow:") |
| 1512 | logging.error(str(fc)) |
| 1513 | logging.error("Received flow:") |
| 1514 | logging.error(str(flow_in)) |
| 1515 | logging.error("actions do not match") |
Howard Persh | 5f3c83f | 2012-04-13 09:57:10 -0700 | [diff] [blame] | 1516 | else: |
| 1517 | # Check for add/delete |
| 1518 | |
| 1519 | if not flow_in == fc: |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 1520 | logging.error("Defined flow:") |
| 1521 | logging.error(str(fc)) |
| 1522 | logging.error("Received flow:") |
| 1523 | logging.error(str(flow_in)) |
| 1524 | logging.error("non-key portions of flow do not match") |
Howard Persh | 5f3c83f | 2012-04-13 09:57:10 -0700 | [diff] [blame] | 1525 | result = False |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1526 | fc.matched = True |
| 1527 | for fc in self.flow_tbl.values(): |
| 1528 | if not fc.matched: |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 1529 | logging.error("Defined flow:") |
| 1530 | logging.error(str(fc)) |
| 1531 | logging.error("was not returned by switch") |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1532 | result = False |
| 1533 | |
| 1534 | return result |
Howard Persh | 680b92a | 2012-03-31 13:34:35 -0700 | [diff] [blame] | 1535 | |
Howard Persh | 9cab482 | 2012-09-11 17:08:40 -0700 | [diff] [blame] | 1536 | def settle(self): |
| 1537 | time.sleep(2) |
| 1538 | |
Howard Persh | 07d99e6 | 2012-04-09 15:26:57 -0700 | [diff] [blame] | 1539 | # FLOW ADD 5 |
| 1540 | # |
| 1541 | # OVERVIEW |
| 1542 | # Add flows to switch, read back and verify flow configurations |
| 1543 | # |
| 1544 | # PURPOSE |
| 1545 | # - Test acceptance of flow adds |
| 1546 | # - Test ability of switch to process additions to flow table in random |
| 1547 | # priority order |
| 1548 | # - Test correctness of flow configuration responses |
| 1549 | # |
| 1550 | # PARAMETERS |
| 1551 | # |
| 1552 | # Name: num_flows |
| 1553 | # Type: number |
| 1554 | # Description: |
| 1555 | # Number of flows to define; 0 => maximum number of flows, as determined |
| 1556 | # from switch capabilities |
| 1557 | # Default: 100 |
| 1558 | # |
| 1559 | # PROCESS |
| 1560 | # 1. Delete all flows from switch |
| 1561 | # 2. Generate <num_flows> distinct flow configurations |
| 1562 | # 3. Send <num_flows> flow adds to switch, for flows generated in step 2 above |
| 1563 | # 4. Verify that no OFPT_ERROR responses were generated by switch |
| 1564 | # 5. Retrieve flow stats from switch |
| 1565 | # 6. Compare flow configurations returned by switch |
| 1566 | # 7. Test PASSED iff all flows sent to switch in step 3 above are returned |
| 1567 | # in step 5 above; else test FAILED |
Howard Persh | 680b92a | 2012-03-31 13:34:35 -0700 | [diff] [blame] | 1568 | |
Rich Lane | b90a1c4 | 2012-10-05 09:16:05 -0700 | [diff] [blame] | 1569 | class Flow_Add_5(base_tests.SimpleProtocol): |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1570 | """ |
| 1571 | Test FLOW_ADD_5 from draft top-half test plan |
| 1572 | |
| 1573 | INPUTS |
| 1574 | num_flows - Number of flows to generate |
| 1575 | """ |
Howard Persh | 680b92a | 2012-03-31 13:34:35 -0700 | [diff] [blame] | 1576 | |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1577 | def runTest(self): |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 1578 | logging.info("Flow_Add_5 TEST BEGIN") |
Howard Persh | c796358 | 2012-03-29 10:02:59 -0700 | [diff] [blame] | 1579 | |
Rich Lane | 2014f9b | 2012-10-05 15:29:40 -0700 | [diff] [blame] | 1580 | num_flows = test_param_get("num_flows", 100) |
Howard Persh | 3340d45 | 2012-04-06 16:45:21 -0700 | [diff] [blame] | 1581 | |
Howard Persh | c796358 | 2012-03-29 10:02:59 -0700 | [diff] [blame] | 1582 | # Clear all flows from switch |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1583 | |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 1584 | logging.info("Deleting all flows from switch") |
Rich Lane | 32bf948 | 2013-01-03 17:26:30 -0800 | [diff] [blame] | 1585 | delete_all_flows(self.controller) |
Howard Persh | c796358 | 2012-03-29 10:02:59 -0700 | [diff] [blame] | 1586 | |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1587 | # Get switch capabilites |
Howard Persh | c796358 | 2012-03-29 10:02:59 -0700 | [diff] [blame] | 1588 | |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1589 | sw = Switch() |
Howard Persh | 8d21c1f | 2012-04-20 15:57:29 -0700 | [diff] [blame] | 1590 | self.assertTrue(sw.connect(self.controller), \ |
| 1591 | "Failed to connect to switch" \ |
| 1592 | ) |
Howard Persh | c796358 | 2012-03-29 10:02:59 -0700 | [diff] [blame] | 1593 | |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1594 | if num_flows == 0: |
| 1595 | # Number of flows requested was 0 |
| 1596 | # => Generate max number of flows |
Howard Persh | c796358 | 2012-03-29 10:02:59 -0700 | [diff] [blame] | 1597 | |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1598 | for ts in sw.tbl_stats.stats: |
| 1599 | num_flows = num_flows + ts.max_entries |
Howard Persh | c796358 | 2012-03-29 10:02:59 -0700 | [diff] [blame] | 1600 | |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 1601 | logging.info("Generating %d flows" % (num_flows)) |
Howard Persh | 680b92a | 2012-03-31 13:34:35 -0700 | [diff] [blame] | 1602 | |
| 1603 | # Dream up some flow information, i.e. space to chose from for |
| 1604 | # random flow parameter generation |
Howard Persh | c796358 | 2012-03-29 10:02:59 -0700 | [diff] [blame] | 1605 | |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1606 | fi = Flow_Info() |
Howard Persh | 07d99e6 | 2012-04-09 15:26:57 -0700 | [diff] [blame] | 1607 | fi.rand(max(2 * int(math.log(num_flows)), 1)) |
Howard Persh | c796358 | 2012-03-29 10:02:59 -0700 | [diff] [blame] | 1608 | |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1609 | # Create a flow table |
Howard Persh | 680b92a | 2012-03-31 13:34:35 -0700 | [diff] [blame] | 1610 | |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1611 | ft = Flow_Tbl() |
Ed Swierk | 99a74de | 2012-08-22 06:40:54 -0700 | [diff] [blame] | 1612 | ft.rand(required_wildcards(self), sw, fi, num_flows) |
Howard Persh | 680b92a | 2012-03-31 13:34:35 -0700 | [diff] [blame] | 1613 | |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1614 | # Send flow table to switch |
Howard Persh | 680b92a | 2012-03-31 13:34:35 -0700 | [diff] [blame] | 1615 | |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 1616 | logging.info("Sending flow adds to switch") |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1617 | for fc in ft.values(): # Randomizes order of sending |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 1618 | logging.info("Adding flow:") |
| 1619 | logging.info(str(fc)); |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1620 | self.assertTrue(sw.flow_add(fc), "Failed to add flow") |
Howard Persh | 680b92a | 2012-03-31 13:34:35 -0700 | [diff] [blame] | 1621 | |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1622 | # Do barrier, to make sure all flows are in |
Howard Persh | 680b92a | 2012-03-31 13:34:35 -0700 | [diff] [blame] | 1623 | |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1624 | self.assertTrue(sw.barrier(), "Barrier failed") |
Howard Persh | c796358 | 2012-03-29 10:02:59 -0700 | [diff] [blame] | 1625 | |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1626 | result = True |
Howard Persh | c796358 | 2012-03-29 10:02:59 -0700 | [diff] [blame] | 1627 | |
Howard Persh | 9cab482 | 2012-09-11 17:08:40 -0700 | [diff] [blame] | 1628 | sw.settle() # Allow switch to settle and generate any notifications |
| 1629 | |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1630 | # Check for any error messages |
Howard Persh | c796358 | 2012-03-29 10:02:59 -0700 | [diff] [blame] | 1631 | |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1632 | if not sw.errors_verify(0): |
| 1633 | result = False |
Howard Persh | c796358 | 2012-03-29 10:02:59 -0700 | [diff] [blame] | 1634 | |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1635 | # Verify flow table |
Howard Persh | c796358 | 2012-03-29 10:02:59 -0700 | [diff] [blame] | 1636 | |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1637 | sw.flow_tbl = ft |
| 1638 | if not sw.flow_tbl_verify(): |
| 1639 | result = False |
Howard Persh | c796358 | 2012-03-29 10:02:59 -0700 | [diff] [blame] | 1640 | |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1641 | self.assertTrue(result, "Flow_Add_5 TEST FAILED") |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 1642 | logging.info("Flow_Add_5 TEST PASSED") |
Howard Persh | c796358 | 2012-03-29 10:02:59 -0700 | [diff] [blame] | 1643 | |
Howard Persh | c796358 | 2012-03-29 10:02:59 -0700 | [diff] [blame] | 1644 | |
Howard Persh | 07d99e6 | 2012-04-09 15:26:57 -0700 | [diff] [blame] | 1645 | # FLOW ADD 5_1 |
| 1646 | # |
| 1647 | # OVERVIEW |
| 1648 | # Verify handling of non-canonical flows |
| 1649 | # |
| 1650 | # PURPOSE |
| 1651 | # - Test that switch detects and correctly responds to a non-canonical flow |
| 1652 | # definition. A canonical flow is one that satisfies all match qualifier |
| 1653 | # dependencies; a non-canonical flow is one that does not. |
| 1654 | # |
| 1655 | # PARAMETERS |
| 1656 | # - None |
| 1657 | # |
| 1658 | # PROCESS |
| 1659 | # 1. Delete all flows from switch |
| 1660 | # 2. Generate 1 flow definition, which is different from its canonicalization |
| 1661 | # 3. Send flow to switch |
| 1662 | # 4. Retrieve flow from switch |
| 1663 | # 5. Compare returned flow to canonical form of defined flow |
| 1664 | # 7. Test PASSED iff flow received in step 4 above is identical to canonical form of flow defined in step 3 above |
| 1665 | |
| 1666 | # Disabled. |
| 1667 | # Should be DUT dependent. |
Howard Persh | 07d99e6 | 2012-04-09 15:26:57 -0700 | [diff] [blame] | 1668 | |
Rich Lane | b90a1c4 | 2012-10-05 09:16:05 -0700 | [diff] [blame] | 1669 | class Flow_Add_5_1(base_tests.SimpleProtocol): |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1670 | """ |
| 1671 | Test FLOW_ADD_5.1 from draft top-half test plan |
| 1672 | |
| 1673 | INPUTS |
| 1674 | None |
| 1675 | """ |
Rich Lane | d1d9c28 | 2012-10-04 22:07:10 -0700 | [diff] [blame] | 1676 | |
| 1677 | priority = -1 |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1678 | |
| 1679 | def runTest(self): |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 1680 | logging.info("Flow_Add_5_1 TEST BEGIN") |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1681 | |
Rich Lane | 2014f9b | 2012-10-05 15:29:40 -0700 | [diff] [blame] | 1682 | num_flows = test_param_get("num_flows", 100) |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1683 | |
| 1684 | # Clear all flows from switch |
| 1685 | |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 1686 | logging.info("Deleting all flows from switch") |
Rich Lane | 32bf948 | 2013-01-03 17:26:30 -0800 | [diff] [blame] | 1687 | delete_all_flows(self.controller) |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1688 | |
| 1689 | # Get switch capabilites |
| 1690 | |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1691 | sw = Switch() |
Howard Persh | 8d21c1f | 2012-04-20 15:57:29 -0700 | [diff] [blame] | 1692 | self.assertTrue(sw.connect(self.controller), \ |
| 1693 | "Failed to connect to switch" \ |
| 1694 | ) |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1695 | |
| 1696 | # Dream up some flow information, i.e. space to chose from for |
| 1697 | # random flow parameter generation |
| 1698 | |
| 1699 | fi = Flow_Info() |
| 1700 | fi.rand(10) |
| 1701 | |
| 1702 | # Dream up a flow config that will be canonicalized by the switch |
| 1703 | |
| 1704 | while True: |
| 1705 | fc = Flow_Cfg() |
| 1706 | fc.rand(fi, \ |
Ed Swierk | 99a74de | 2012-08-22 06:40:54 -0700 | [diff] [blame] | 1707 | required_wildcards(self), \ |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1708 | sw.tbl_stats.stats[0].wildcards, \ |
| 1709 | sw.sw_features.actions, \ |
Howard Persh | 8d21c1f | 2012-04-20 15:57:29 -0700 | [diff] [blame] | 1710 | sw.valid_ports, \ |
| 1711 | sw.valid_queues \ |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1712 | ) |
| 1713 | fcc = fc.canonical() |
Howard Persh | 07d99e6 | 2012-04-09 15:26:57 -0700 | [diff] [blame] | 1714 | if fcc.match != fc.match: |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1715 | break |
| 1716 | |
| 1717 | ft = Flow_Tbl() |
| 1718 | ft.insert(fcc) |
| 1719 | |
| 1720 | # Send it to the switch |
| 1721 | |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 1722 | logging.info("Sending flow add to switch:") |
| 1723 | logging.info(str(fc)) |
| 1724 | logging.info("should be canonicalized as:") |
| 1725 | logging.info(str(fcc)) |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1726 | fc.send_rem = False |
| 1727 | self.assertTrue(sw.flow_add(fc), "Failed to add flow") |
| 1728 | |
| 1729 | # Do barrier, to make sure all flows are in |
| 1730 | |
| 1731 | self.assertTrue(sw.barrier(), "Barrier failed") |
| 1732 | |
| 1733 | result = True |
| 1734 | |
Howard Persh | 9cab482 | 2012-09-11 17:08:40 -0700 | [diff] [blame] | 1735 | sw.settle() # Allow switch to settle and generate any notifications |
| 1736 | |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1737 | # Check for any error messages |
| 1738 | |
| 1739 | if not sw.errors_verify(0): |
| 1740 | result = False |
| 1741 | |
| 1742 | # Verify flow table |
| 1743 | |
| 1744 | sw.flow_tbl = ft |
| 1745 | if not sw.flow_tbl_verify(): |
| 1746 | result = False |
| 1747 | |
| 1748 | self.assertTrue(result, "Flow_Add_5_1 TEST FAILED") |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 1749 | logging.info("Flow_Add_5_1 TEST PASSED") |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1750 | |
| 1751 | |
Howard Persh | 07d99e6 | 2012-04-09 15:26:57 -0700 | [diff] [blame] | 1752 | # FLOW ADD 6 |
| 1753 | # |
| 1754 | # OVERVIEW |
| 1755 | # Test flow table capacity |
| 1756 | # |
| 1757 | # PURPOSE |
| 1758 | # - Test switch can accept as many flow definitions as it claims |
| 1759 | # - Test generation of OFPET_FLOW_MOD_FAILED/OFPFMFC_ALL_TABLES_FULL |
| 1760 | # - Test that attempting to create flows beyond capacity does not corrupt |
| 1761 | # flow table |
| 1762 | # |
| 1763 | # PARAMETERS |
| 1764 | # None |
| 1765 | # |
| 1766 | # PROCESS |
| 1767 | # 1. Delete all flows from switch |
| 1768 | # 2. Send OFPT_FEATURES_REQUEST and OFPT_STATS_REQUEST/OFPST_TABLE enquiries |
| 1769 | # to determine flow table size, N |
| 1770 | # 3. Generate (N + 1) distinct flow configurations |
| 1771 | # 4. Send N flow adds to switch, for flows generated in step 3 above |
| 1772 | # 5. Verify flow table in switch |
| 1773 | # 6. Send one more flow add to switch |
| 1774 | # 7. Verify that OFPET_FLOW_MOD_FAILED/OFPFMFC_ALL_TABLES_FULL error |
| 1775 | # response was generated by switch, for last flow mod sent |
| 1776 | # 7. Retrieve flow stats from switch |
| 1777 | # 8. Verify flow table in switch |
| 1778 | # 9. Test PASSED iff: |
| 1779 | # - error message received, for correct flow |
| 1780 | # - last flow definition sent to switch is not in flow table |
| 1781 | # else test FAILED |
| 1782 | |
Howard Persh | 3340d45 | 2012-04-06 16:45:21 -0700 | [diff] [blame] | 1783 | # Disabled because of bogus capacity reported by OVS. |
| 1784 | # Should be DUT dependent. |
Howard Persh | 3340d45 | 2012-04-06 16:45:21 -0700 | [diff] [blame] | 1785 | |
Rich Lane | b90a1c4 | 2012-10-05 09:16:05 -0700 | [diff] [blame] | 1786 | class Flow_Add_6(base_tests.SimpleProtocol): |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1787 | """ |
| 1788 | Test FLOW_ADD_6 from draft top-half test plan |
| 1789 | |
| 1790 | INPUTS |
| 1791 | num_flows - Number of flows to generate |
| 1792 | """ |
Howard Persh | c796358 | 2012-03-29 10:02:59 -0700 | [diff] [blame] | 1793 | |
Rich Lane | d1d9c28 | 2012-10-04 22:07:10 -0700 | [diff] [blame] | 1794 | priority = -1 |
| 1795 | |
Howard Persh | c796358 | 2012-03-29 10:02:59 -0700 | [diff] [blame] | 1796 | def runTest(self): |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 1797 | logging.info("Flow_Add_6 TEST BEGIN") |
Howard Persh | c796358 | 2012-03-29 10:02:59 -0700 | [diff] [blame] | 1798 | |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1799 | # Clear all flows from switch |
Howard Persh | c796358 | 2012-03-29 10:02:59 -0700 | [diff] [blame] | 1800 | |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 1801 | logging.info("Deleting all flows from switch") |
Rich Lane | 32bf948 | 2013-01-03 17:26:30 -0800 | [diff] [blame] | 1802 | delete_all_flows(self.controller) |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1803 | |
| 1804 | # Get switch capabilites |
| 1805 | |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1806 | sw = Switch() |
Howard Persh | 8d21c1f | 2012-04-20 15:57:29 -0700 | [diff] [blame] | 1807 | self.assertTrue(sw.connect(self.controller), \ |
| 1808 | "Failed to connect to switch" \ |
| 1809 | ) |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1810 | |
root | 2843d2b | 2012-04-06 10:27:46 -0700 | [diff] [blame] | 1811 | num_flows = 0 |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1812 | for ts in sw.tbl_stats.stats: |
| 1813 | num_flows = num_flows + ts.max_entries |
| 1814 | |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 1815 | logging.info("Switch capacity is %d flows" % (num_flows)) |
| 1816 | logging.info("Generating %d flows" % (num_flows)) |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1817 | |
| 1818 | # Dream up some flow information, i.e. space to chose from for |
| 1819 | # random flow parameter generation |
| 1820 | |
| 1821 | fi = Flow_Info() |
Howard Persh | 07d99e6 | 2012-04-09 15:26:57 -0700 | [diff] [blame] | 1822 | fi.rand(max(2 * int(math.log(num_flows)), 1)) |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1823 | |
| 1824 | # Create a flow table, to switch's capacity |
| 1825 | |
| 1826 | ft = Flow_Tbl() |
Ed Swierk | 99a74de | 2012-08-22 06:40:54 -0700 | [diff] [blame] | 1827 | ft.rand(required_wildcards(self), sw, fi, num_flows) |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1828 | |
| 1829 | # Send flow table to switch |
| 1830 | |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 1831 | logging.info("Sending flow adds to switch") |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1832 | for fc in ft.values(): # Randomizes order of sending |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 1833 | logging.info("Adding flow:") |
| 1834 | logging.info(str(fc)); |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1835 | self.assertTrue(sw.flow_add(fc), "Failed to add flow") |
| 1836 | |
| 1837 | # Do barrier, to make sure all flows are in |
| 1838 | |
| 1839 | self.assertTrue(sw.barrier(), "Barrier failed") |
| 1840 | |
| 1841 | result = True |
| 1842 | |
Howard Persh | 9cab482 | 2012-09-11 17:08:40 -0700 | [diff] [blame] | 1843 | sw.settle() # Allow switch to settle and generate any notifications |
| 1844 | |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1845 | # Check for any error messages |
| 1846 | |
| 1847 | if not sw.errors_verify(0): |
| 1848 | result = False |
| 1849 | |
| 1850 | # Dream up one more flow |
| 1851 | |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 1852 | logging.info("Creating one more flow") |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1853 | while True: |
| 1854 | fc = Flow_Cfg() |
| 1855 | fc.rand(fi, \ |
Ed Swierk | 99a74de | 2012-08-22 06:40:54 -0700 | [diff] [blame] | 1856 | required_wildcards(self), \ |
Howard Persh | 07d99e6 | 2012-04-09 15:26:57 -0700 | [diff] [blame] | 1857 | sw.tbl_stats.stats[0].wildcards, \ |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1858 | sw.sw_features.actions, \ |
Howard Persh | 8d21c1f | 2012-04-20 15:57:29 -0700 | [diff] [blame] | 1859 | sw.valid_ports, \ |
| 1860 | sw.valid_queues \ |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1861 | ) |
| 1862 | fc = fc.canonical() |
Howard Persh | 07d99e6 | 2012-04-09 15:26:57 -0700 | [diff] [blame] | 1863 | if not ft.find(fc): |
| 1864 | break |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1865 | |
| 1866 | # Send one-more flow |
| 1867 | |
| 1868 | fc.send_rem = False |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 1869 | logging.info("Sending flow add switch") |
| 1870 | logging.info(str(fc)); |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1871 | self.assertTrue(sw.flow_add(fc), "Failed to add flow") |
| 1872 | |
| 1873 | # Do barrier, to make sure all flows are in |
| 1874 | |
| 1875 | self.assertTrue(sw.barrier(), "Barrier failed") |
| 1876 | |
Howard Persh | 9cab482 | 2012-09-11 17:08:40 -0700 | [diff] [blame] | 1877 | sw.settle() # Allow switch to settle and generate any notifications |
| 1878 | |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1879 | # Check for expected error message |
| 1880 | |
| 1881 | if not sw.errors_verify(1, \ |
| 1882 | ofp.OFPET_FLOW_MOD_FAILED, \ |
| 1883 | ofp.OFPFMFC_ALL_TABLES_FULL \ |
| 1884 | ): |
| 1885 | result = False |
| 1886 | |
| 1887 | # Verify flow table |
| 1888 | |
| 1889 | sw.flow_tbl = ft |
| 1890 | if not sw.flow_tbl_verify(): |
| 1891 | result = False |
| 1892 | |
| 1893 | self.assertTrue(result, "Flow_add_6 TEST FAILED") |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 1894 | logging.info("Flow_add_6 TEST PASSED") |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1895 | |
| 1896 | |
Howard Persh | 07d99e6 | 2012-04-09 15:26:57 -0700 | [diff] [blame] | 1897 | # FLOW ADD 7 |
| 1898 | # |
| 1899 | # OVERVIEW |
| 1900 | # Test flow redefinition |
| 1901 | # |
| 1902 | # PURPOSE |
| 1903 | # Verify that successive flow adds with same priority and match criteria |
| 1904 | # overwrite in flow table |
| 1905 | # |
| 1906 | # PARAMETERS |
| 1907 | # None |
| 1908 | # |
| 1909 | # PROCESS |
| 1910 | # 1. Delete all flows from switch |
| 1911 | # 2. Generate flow definition F1 |
| 1912 | # 3. Generate flow definition F2, with same key (priority and match) as F1, |
| 1913 | # but with different actions |
| 1914 | # 4. Send flow adds for F1 and F2 to switch |
| 1915 | # 5. Verify flow definitions in switch |
| 1916 | # 6. Test PASSED iff 1 flow returned by switch, matching configuration of F2; |
| 1917 | # else test FAILED |
| 1918 | |
Rich Lane | b90a1c4 | 2012-10-05 09:16:05 -0700 | [diff] [blame] | 1919 | class Flow_Add_7(base_tests.SimpleProtocol): |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1920 | """ |
| 1921 | Test FLOW_ADD_7 from draft top-half test plan |
| 1922 | |
| 1923 | INPUTS |
| 1924 | None |
| 1925 | """ |
| 1926 | |
| 1927 | def runTest(self): |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 1928 | logging.info("Flow_Add_7 TEST BEGIN") |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1929 | |
| 1930 | # Clear all flows from switch |
| 1931 | |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 1932 | logging.info("Deleting all flows from switch") |
Rich Lane | 32bf948 | 2013-01-03 17:26:30 -0800 | [diff] [blame] | 1933 | delete_all_flows(self.controller) |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1934 | |
| 1935 | # Get switch capabilites |
| 1936 | |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1937 | sw = Switch() |
Howard Persh | 8d21c1f | 2012-04-20 15:57:29 -0700 | [diff] [blame] | 1938 | self.assertTrue(sw.connect(self.controller), \ |
| 1939 | "Failed to connect to switch" \ |
| 1940 | ) |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1941 | |
| 1942 | # Dream up some flow information, i.e. space to chose from for |
| 1943 | # random flow parameter generation |
| 1944 | |
| 1945 | fi = Flow_Info() |
| 1946 | fi.rand(10) |
| 1947 | |
| 1948 | # Dream up a flow config |
| 1949 | |
| 1950 | fc = Flow_Cfg() |
| 1951 | fc.rand(fi, \ |
Ed Swierk | 99a74de | 2012-08-22 06:40:54 -0700 | [diff] [blame] | 1952 | required_wildcards(self), \ |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1953 | sw.tbl_stats.stats[0].wildcards, \ |
| 1954 | sw.sw_features.actions, \ |
Howard Persh | 8d21c1f | 2012-04-20 15:57:29 -0700 | [diff] [blame] | 1955 | sw.valid_ports, \ |
| 1956 | sw.valid_queues \ |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1957 | ) |
| 1958 | fc = fc.canonical() |
| 1959 | |
| 1960 | # Send it to the switch |
| 1961 | |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 1962 | logging.info("Sending flow add to switch:") |
| 1963 | logging.info(str(fc)) |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1964 | ft = Flow_Tbl() |
| 1965 | fc.send_rem = False |
| 1966 | self.assertTrue(sw.flow_add(fc), "Failed to add flow") |
| 1967 | ft.insert(fc) |
| 1968 | |
| 1969 | # Dream up some different actions, with the same flow key |
| 1970 | |
| 1971 | fc2 = copy.deepcopy(fc) |
| 1972 | while True: |
| 1973 | fc2.rand_mod(fi, \ |
| 1974 | sw.sw_features.actions, \ |
Howard Persh | 8d21c1f | 2012-04-20 15:57:29 -0700 | [diff] [blame] | 1975 | sw.valid_ports, \ |
| 1976 | sw.valid_queues \ |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1977 | ) |
| 1978 | if fc2 != fc: |
| 1979 | break |
| 1980 | |
| 1981 | # Send that to the switch |
| 1982 | |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 1983 | logging.info("Sending flow add to switch:") |
| 1984 | logging.info(str(fc2)) |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1985 | fc2.send_rem = False |
| 1986 | self.assertTrue(sw.flow_add(fc2), "Failed to add flow") |
| 1987 | ft.insert(fc2) |
| 1988 | |
| 1989 | # Do barrier, to make sure all flows are in |
| 1990 | |
| 1991 | self.assertTrue(sw.barrier(), "Barrier failed") |
| 1992 | |
| 1993 | result = True |
| 1994 | |
Howard Persh | 9cab482 | 2012-09-11 17:08:40 -0700 | [diff] [blame] | 1995 | sw.settle() # Allow switch to settle and generate any notifications |
| 1996 | |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 1997 | # Check for any error messages |
| 1998 | |
| 1999 | if not sw.errors_verify(0): |
| 2000 | result = False |
| 2001 | |
| 2002 | # Verify flow table |
| 2003 | |
| 2004 | sw.flow_tbl = ft |
| 2005 | if not sw.flow_tbl_verify(): |
| 2006 | result = False |
| 2007 | |
| 2008 | self.assertTrue(result, "Flow_Add_7 TEST FAILED") |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 2009 | logging.info("Flow_Add_7 TEST PASSED") |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 2010 | |
| 2011 | |
Howard Persh | 07d99e6 | 2012-04-09 15:26:57 -0700 | [diff] [blame] | 2012 | # FLOW ADD 8 |
| 2013 | # |
| 2014 | # OVERVIEW |
| 2015 | # Add overlapping flows to switch, verify that overlapping flows are rejected |
| 2016 | # |
| 2017 | # PURPOSE |
| 2018 | # - Test detection of overlapping flows by switch |
| 2019 | # - Test generation of OFPET_FLOW_MOD_FAILED/OFPFMFC_OVERLAP messages |
| 2020 | # - Test rejection of overlapping flows |
| 2021 | # - Test defining overlapping flows does not corrupt flow table |
| 2022 | # |
| 2023 | # PARAMETERS |
| 2024 | # None |
| 2025 | # |
| 2026 | # PROCESS |
| 2027 | # 1. Delete all flows from switch |
| 2028 | # 2. Generate flow definition F1 |
| 2029 | # 3. Generate flow definition F2, with key overlapping F1 |
| 2030 | # 4. Send flow add to switch, for F1 |
| 2031 | # 5. Send flow add to switch, for F2, with OFPFF_CHECK_OVERLAP set |
| 2032 | # 6. Verify that OFPET_FLOW_MOD_FAILED/OFPFMFC_OVERLAP error response |
| 2033 | # was generated by switch |
| 2034 | # 7. Verifiy flows configured in swtich |
| 2035 | # 8. Test PASSED iff: |
| 2036 | # - error message received, for overlapping flow |
| 2037 | # - overlapping flow is not in flow table |
| 2038 | # else test FAILED |
| 2039 | |
Rich Lane | b90a1c4 | 2012-10-05 09:16:05 -0700 | [diff] [blame] | 2040 | class Flow_Add_8(base_tests.SimpleProtocol): |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 2041 | """ |
| 2042 | Test FLOW_ADD_8 from draft top-half test plan |
| 2043 | |
| 2044 | INPUTS |
| 2045 | None |
| 2046 | """ |
| 2047 | |
| 2048 | def runTest(self): |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 2049 | logging.info("Flow_Add_8 TEST BEGIN") |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 2050 | |
| 2051 | # Clear all flows from switch |
| 2052 | |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 2053 | logging.info("Deleting all flows from switch") |
Rich Lane | 32bf948 | 2013-01-03 17:26:30 -0800 | [diff] [blame] | 2054 | delete_all_flows(self.controller) |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 2055 | |
| 2056 | # Get switch capabilites |
| 2057 | |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 2058 | sw = Switch() |
Howard Persh | 8d21c1f | 2012-04-20 15:57:29 -0700 | [diff] [blame] | 2059 | self.assertTrue(sw.connect(self.controller), \ |
| 2060 | "Failed to connect to switch" \ |
| 2061 | ) |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 2062 | |
| 2063 | # Dream up some flow information, i.e. space to chose from for |
| 2064 | # random flow parameter generation |
| 2065 | |
| 2066 | fi = Flow_Info() |
| 2067 | fi.rand(10) |
| 2068 | |
| 2069 | # Dream up a flow config, with at least 1 qualifier specified |
| 2070 | |
| 2071 | fc = Flow_Cfg() |
| 2072 | while True: |
| 2073 | fc.rand(fi, \ |
Ed Swierk | 99a74de | 2012-08-22 06:40:54 -0700 | [diff] [blame] | 2074 | required_wildcards(self), \ |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 2075 | sw.tbl_stats.stats[0].wildcards, \ |
| 2076 | sw.sw_features.actions, \ |
Howard Persh | 8d21c1f | 2012-04-20 15:57:29 -0700 | [diff] [blame] | 2077 | sw.valid_ports, \ |
| 2078 | sw.valid_queues \ |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 2079 | ) |
| 2080 | fc = fc.canonical() |
| 2081 | if fc.match.wildcards != ofp.OFPFW_ALL: |
| 2082 | break |
| 2083 | |
| 2084 | # Send it to the switch |
| 2085 | |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 2086 | logging.info("Sending flow add to switch:") |
| 2087 | logging.info(str(fc)) |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 2088 | ft = Flow_Tbl() |
| 2089 | fc.send_rem = False |
| 2090 | self.assertTrue(sw.flow_add(fc), "Failed to add flow") |
| 2091 | ft.insert(fc) |
| 2092 | |
| 2093 | # Wildcard out one qualifier that was specified, to create an |
| 2094 | # overlapping flow |
| 2095 | |
| 2096 | fc2 = copy.deepcopy(fc) |
| 2097 | for wi in shuffle(range(len(all_wildcards_list))): |
| 2098 | w = all_wildcards_list[wi] |
| 2099 | if (fc2.match.wildcards & w) == 0: |
| 2100 | break |
| 2101 | if w == ofp.OFPFW_NW_SRC_MASK: |
| 2102 | w = ofp.OFPFW_NW_SRC_ALL |
| 2103 | wn = "OFPFW_NW_SRC" |
| 2104 | elif w == ofp.OFPFW_NW_DST_MASK: |
| 2105 | w = ofp.OFPFW_NW_DST_ALL |
| 2106 | wn = "OFPFW_NW_DST" |
| 2107 | else: |
| 2108 | wn = all_wildcard_names[w] |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 2109 | logging.info("Wildcarding out %s" % (wn)) |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 2110 | fc2.match.wildcards = fc2.match.wildcards | w |
Howard Persh | 07d99e6 | 2012-04-09 15:26:57 -0700 | [diff] [blame] | 2111 | fc2 = fc2.canonical() |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 2112 | |
| 2113 | # Send that to the switch, with overlap checking |
| 2114 | |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 2115 | logging.info("Sending flow add to switch:") |
| 2116 | logging.info(str(fc2)) |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 2117 | fc2.send_rem = False |
| 2118 | self.assertTrue(sw.flow_add(fc2, True), "Failed to add flow") |
| 2119 | |
| 2120 | # Do barrier, to make sure all flows are in |
| 2121 | self.assertTrue(sw.barrier(), "Barrier failed") |
| 2122 | |
| 2123 | result = True |
| 2124 | |
Howard Persh | 9cab482 | 2012-09-11 17:08:40 -0700 | [diff] [blame] | 2125 | sw.settle() # Allow switch to settle and generate any notifications |
| 2126 | |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 2127 | # Check for expected error message |
| 2128 | |
| 2129 | if not sw.errors_verify(1, \ |
| 2130 | ofp.OFPET_FLOW_MOD_FAILED, \ |
| 2131 | ofp.OFPFMFC_OVERLAP \ |
| 2132 | ): |
| 2133 | result = False |
| 2134 | |
| 2135 | # Verify flow table |
| 2136 | |
| 2137 | sw.flow_tbl = ft |
| 2138 | if not sw.flow_tbl_verify(): |
| 2139 | result = False |
| 2140 | |
| 2141 | self.assertTrue(result, "Flow_Add_8 TEST FAILED") |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 2142 | logging.info("Flow_Add_8 TEST PASSED") |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 2143 | |
| 2144 | |
Howard Persh | 07d99e6 | 2012-04-09 15:26:57 -0700 | [diff] [blame] | 2145 | # FLOW MODIFY 1 |
| 2146 | # |
| 2147 | # OVERVIEW |
| 2148 | # Strict modify of single existing flow |
| 2149 | # |
| 2150 | # PURPOSE |
| 2151 | # - Verify that strict flow modify operates only on specified flow |
| 2152 | # - Verify that flow is correctly modified |
| 2153 | # |
| 2154 | # PARAMETERS |
| 2155 | # None |
| 2156 | # |
| 2157 | # PROCESS |
| 2158 | # 1. Delete all flows from switch |
| 2159 | # 2. Generate 1 flow F |
| 2160 | # 3. Send flow add to switch, for flow F |
| 2161 | # 4. Generate new action list for flow F, yielding F' |
| 2162 | # 5. Send strict flow modify to switch, for flow F' |
| 2163 | # 6. Verify flow table in switch |
| 2164 | # 7. Test PASSED iff flow returned by switch is F'; else FAILED |
| 2165 | |
Rich Lane | b90a1c4 | 2012-10-05 09:16:05 -0700 | [diff] [blame] | 2166 | class Flow_Mod_1(base_tests.SimpleProtocol): |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 2167 | """ |
| 2168 | Test FLOW_MOD_1 from draft top-half test plan |
| 2169 | |
| 2170 | INPUTS |
| 2171 | None |
| 2172 | """ |
| 2173 | |
| 2174 | def runTest(self): |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 2175 | logging.info("Flow_Mod_1 TEST BEGIN") |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 2176 | |
| 2177 | # Clear all flows from switch |
| 2178 | |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 2179 | logging.info("Deleting all flows from switch") |
Rich Lane | 32bf948 | 2013-01-03 17:26:30 -0800 | [diff] [blame] | 2180 | delete_all_flows(self.controller) |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 2181 | |
| 2182 | # Get switch capabilites |
| 2183 | |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 2184 | sw = Switch() |
Howard Persh | 8d21c1f | 2012-04-20 15:57:29 -0700 | [diff] [blame] | 2185 | self.assertTrue(sw.connect(self.controller), \ |
| 2186 | "Failed to connect to switch" \ |
| 2187 | ) |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 2188 | |
| 2189 | # Dream up some flow information, i.e. space to chose from for |
| 2190 | # random flow parameter generation |
| 2191 | |
| 2192 | fi = Flow_Info() |
| 2193 | fi.rand(10) |
| 2194 | |
| 2195 | # Dream up a flow config |
| 2196 | |
| 2197 | fc = Flow_Cfg() |
| 2198 | fc.rand(fi, \ |
Ed Swierk | 99a74de | 2012-08-22 06:40:54 -0700 | [diff] [blame] | 2199 | required_wildcards(self), \ |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 2200 | sw.tbl_stats.stats[0].wildcards, \ |
| 2201 | sw.sw_features.actions, \ |
Howard Persh | 8d21c1f | 2012-04-20 15:57:29 -0700 | [diff] [blame] | 2202 | sw.valid_ports, \ |
| 2203 | sw.valid_queues \ |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 2204 | ) |
| 2205 | fc = fc.canonical() |
| 2206 | |
| 2207 | # Send it to the switch |
| 2208 | |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 2209 | logging.info("Sending flow add to switch:") |
| 2210 | logging.info(str(fc)) |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 2211 | ft = Flow_Tbl() |
| 2212 | fc.send_rem = False |
| 2213 | self.assertTrue(sw.flow_add(fc), "Failed to add flow") |
| 2214 | ft.insert(fc) |
| 2215 | |
| 2216 | # Dream up some different actions, with the same flow key |
| 2217 | |
| 2218 | fc2 = copy.deepcopy(fc) |
| 2219 | while True: |
| 2220 | fc2.rand_mod(fi, \ |
| 2221 | sw.sw_features.actions, \ |
Howard Persh | 8d21c1f | 2012-04-20 15:57:29 -0700 | [diff] [blame] | 2222 | sw.valid_ports, \ |
| 2223 | sw.valid_queues \ |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 2224 | ) |
| 2225 | if fc2 != fc: |
| 2226 | break |
| 2227 | |
| 2228 | # Send that to the switch |
| 2229 | |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 2230 | logging.info("Sending strict flow mod to switch:") |
| 2231 | logging.info(str(fc2)) |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 2232 | fc2.send_rem = False |
| 2233 | self.assertTrue(sw.flow_mod(fc2, True), "Failed to modify flow") |
| 2234 | ft.insert(fc2) |
| 2235 | |
| 2236 | # Do barrier, to make sure all flows are in |
| 2237 | |
| 2238 | self.assertTrue(sw.barrier(), "Barrier failed") |
| 2239 | |
| 2240 | result = True |
| 2241 | |
Howard Persh | 9cab482 | 2012-09-11 17:08:40 -0700 | [diff] [blame] | 2242 | sw.settle() # Allow switch to settle and generate any notifications |
| 2243 | |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 2244 | # Check for any error messages |
| 2245 | |
| 2246 | if not sw.errors_verify(0): |
| 2247 | result = False |
| 2248 | |
| 2249 | # Verify flow table |
| 2250 | |
| 2251 | sw.flow_tbl = ft |
Howard Persh | 5f3c83f | 2012-04-13 09:57:10 -0700 | [diff] [blame] | 2252 | if not sw.flow_tbl_verify(True): |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 2253 | result = False |
| 2254 | |
| 2255 | self.assertTrue(result, "Flow_Mod_1 TEST FAILED") |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 2256 | logging.info("Flow_Mod_1 TEST PASSED") |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 2257 | |
Howard Persh | 07d99e6 | 2012-04-09 15:26:57 -0700 | [diff] [blame] | 2258 | |
| 2259 | # FLOW MODIFY 2 |
| 2260 | # |
| 2261 | # OVERVIEW |
| 2262 | # Loose modify of mutiple flows |
| 2263 | # |
| 2264 | # PURPOSE |
| 2265 | # - Verify that loose flow modify operates only on matching flows |
| 2266 | # - Verify that matching flows are correctly modified |
| 2267 | # |
| 2268 | # PARAMETERS |
| 2269 | # Name: num_flows |
| 2270 | # Type: number |
| 2271 | # Description: |
| 2272 | # Number of flows to define |
| 2273 | # Default: 100 |
| 2274 | # |
| 2275 | # PROCESS |
| 2276 | # 1. Delete all flows from switch |
| 2277 | # 2. Generate <num_flows> distinct flow configurations |
| 2278 | # 3. Send <num_flows> flow adds to switch |
| 2279 | # 4. Pick 1 defined flow F at random |
| 2280 | # 5. Create overlapping loose flow mod match criteria by repeatedly |
| 2281 | # wildcarding out qualifiers in match of F => F', |
| 2282 | # and create new actions list A' for F' |
| 2283 | # 6. Send loose flow modify for F' to switch |
| 2284 | # 7. Verify flow table in swtich |
| 2285 | # 8. Test PASSED iff all flows sent to switch in steps 3 and 6 above, |
| 2286 | # are returned in step 7 above, each with correct (original or modified) |
| 2287 | # action list; |
| 2288 | # else test FAILED |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 2289 | |
Rich Lane | b90a1c4 | 2012-10-05 09:16:05 -0700 | [diff] [blame] | 2290 | class Flow_Mod_2(base_tests.SimpleProtocol): |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 2291 | """ |
| 2292 | Test FLOW_MOD_2 from draft top-half test plan |
| 2293 | |
| 2294 | INPUTS |
| 2295 | None |
| 2296 | """ |
| 2297 | |
| 2298 | def runTest(self): |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 2299 | logging.info("Flow_Mod_2 TEST BEGIN") |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 2300 | |
Rich Lane | 2014f9b | 2012-10-05 15:29:40 -0700 | [diff] [blame] | 2301 | num_flows = test_param_get("num_flows", 100) |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 2302 | |
| 2303 | # Clear all flows from switch |
| 2304 | |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 2305 | logging.info("Deleting all flows from switch") |
Rich Lane | 32bf948 | 2013-01-03 17:26:30 -0800 | [diff] [blame] | 2306 | delete_all_flows(self.controller) |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 2307 | |
| 2308 | # Get switch capabilites |
| 2309 | |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 2310 | sw = Switch() |
Howard Persh | 8d21c1f | 2012-04-20 15:57:29 -0700 | [diff] [blame] | 2311 | self.assertTrue(sw.connect(self.controller), \ |
| 2312 | "Failed to connect to switch" \ |
| 2313 | ) |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 2314 | |
| 2315 | # Dream up some flow information, i.e. space to chose from for |
| 2316 | # random flow parameter generation |
| 2317 | |
| 2318 | fi = Flow_Info() |
Howard Persh | 3340d45 | 2012-04-06 16:45:21 -0700 | [diff] [blame] | 2319 | # Shrunk, to increase chance of meta-matches |
Howard Persh | 07d99e6 | 2012-04-09 15:26:57 -0700 | [diff] [blame] | 2320 | fi.rand(max(int(math.log(num_flows)) / 2, 1)) |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 2321 | |
| 2322 | # Dream up some flows |
| 2323 | |
| 2324 | ft = Flow_Tbl() |
Ed Swierk | 99a74de | 2012-08-22 06:40:54 -0700 | [diff] [blame] | 2325 | ft.rand(required_wildcards(self), sw, fi, num_flows) |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 2326 | |
| 2327 | # Send flow table to switch |
| 2328 | |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 2329 | logging.info("Sending flow adds to switch") |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 2330 | for fc in ft.values(): # Randomizes order of sending |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 2331 | logging.info("Adding flow:") |
| 2332 | logging.info(str(fc)); |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 2333 | self.assertTrue(sw.flow_add(fc), "Failed to add flow") |
| 2334 | |
| 2335 | # Do barrier, to make sure all flows are in |
| 2336 | |
| 2337 | self.assertTrue(sw.barrier(), "Barrier failed") |
| 2338 | |
| 2339 | result = True |
| 2340 | |
Howard Persh | 9cab482 | 2012-09-11 17:08:40 -0700 | [diff] [blame] | 2341 | sw.settle() # Allow switch to settle and generate any notifications |
| 2342 | |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 2343 | # Check for any error messages |
| 2344 | |
| 2345 | if not sw.errors_verify(0): |
| 2346 | result = False |
| 2347 | |
| 2348 | # Verify flow table |
| 2349 | |
| 2350 | sw.flow_tbl = ft |
| 2351 | if not sw.flow_tbl_verify(): |
| 2352 | result = False |
| 2353 | |
| 2354 | # Pick a random flow as a basis |
Howard Persh | 5f3c83f | 2012-04-13 09:57:10 -0700 | [diff] [blame] | 2355 | |
| 2356 | mfc = copy.deepcopy((ft.values())[0]) |
Howard Persh | 8d21c1f | 2012-04-20 15:57:29 -0700 | [diff] [blame] | 2357 | mfc.rand_mod(fi, \ |
| 2358 | sw.sw_features.actions, \ |
| 2359 | sw.valid_ports, \ |
| 2360 | sw.valid_queues \ |
| 2361 | ) |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 2362 | |
| 2363 | # Repeatedly wildcard qualifiers |
| 2364 | |
| 2365 | for wi in shuffle(range(len(all_wildcards_list))): |
| 2366 | w = all_wildcards_list[wi] |
| 2367 | if w == ofp.OFPFW_NW_SRC_MASK or w == ofp.OFPFW_NW_DST_MASK: |
| 2368 | n = wildcard_get(mfc.match.wildcards, w) |
| 2369 | if n < 32: |
Howard Persh | 3340d45 | 2012-04-06 16:45:21 -0700 | [diff] [blame] | 2370 | mfc.match.wildcards = wildcard_set(mfc.match.wildcards, \ |
| 2371 | w, \ |
| 2372 | random.randint(n + 1, 32) \ |
| 2373 | ) |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 2374 | else: |
| 2375 | continue |
| 2376 | else: |
| 2377 | if wildcard_get(mfc.match.wildcards, w) == 0: |
| 2378 | mfc.match.wildcards = wildcard_set(mfc.match.wildcards, w, 1) |
| 2379 | else: |
| 2380 | continue |
| 2381 | mfc = mfc.canonical() |
| 2382 | |
| 2383 | # Count the number of flows that would be modified |
| 2384 | |
| 2385 | n = 0 |
| 2386 | for fc in ft.values(): |
| 2387 | if mfc.overlaps(fc, True) and not mfc.non_key_equal(fc): |
| 2388 | n = n + 1 |
| 2389 | |
| 2390 | # If more than 1, we found our loose delete flow spec |
| 2391 | if n > 1: |
| 2392 | break |
| 2393 | |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 2394 | logging.info("Modifying %d flows" % (n)) |
| 2395 | logging.info("Sending flow mod to switch:") |
| 2396 | logging.info(str(mfc)) |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 2397 | self.assertTrue(sw.flow_mod(mfc, False), "Failed to modify flow") |
| 2398 | |
| 2399 | # Do barrier, to make sure all flows are in |
| 2400 | self.assertTrue(sw.barrier(), "Barrier failed") |
| 2401 | |
Howard Persh | 9cab482 | 2012-09-11 17:08:40 -0700 | [diff] [blame] | 2402 | sw.settle() # Allow switch to settle and generate any notifications |
| 2403 | |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 2404 | # Check for error message |
| 2405 | |
| 2406 | if not sw.errors_verify(0): |
| 2407 | result = False |
| 2408 | |
| 2409 | # Apply flow mod to local flow table |
| 2410 | |
| 2411 | for fc in ft.values(): |
| 2412 | if mfc.overlaps(fc, True): |
root | 2843d2b | 2012-04-06 10:27:46 -0700 | [diff] [blame] | 2413 | fc.actions = mfc.actions |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 2414 | |
| 2415 | # Verify flow table |
| 2416 | |
| 2417 | sw.flow_tbl = ft |
Howard Persh | 5f3c83f | 2012-04-13 09:57:10 -0700 | [diff] [blame] | 2418 | if not sw.flow_tbl_verify(True): |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 2419 | result = False |
| 2420 | |
| 2421 | self.assertTrue(result, "Flow_Mod_2 TEST FAILED") |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 2422 | logging.info("Flow_Mod_2 TEST PASSED") |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 2423 | |
| 2424 | |
Howard Persh | 07d99e6 | 2012-04-09 15:26:57 -0700 | [diff] [blame] | 2425 | # FLOW MODIFY 3 |
| 2426 | |
| 2427 | # OVERVIEW |
| 2428 | # Strict modify of non-existent flow |
| 2429 | # |
| 2430 | # PURPOSE |
| 2431 | # Verify that strict modify of a non-existent flow is equivalent to a flow add |
| 2432 | # |
| 2433 | # PARAMETERS |
| 2434 | # None |
| 2435 | # |
| 2436 | # PROCESS |
| 2437 | # 1. Delete all flows from switch |
| 2438 | # 2. Send single flow mod, as strict modify, to switch |
| 2439 | # 3. Verify flow table in switch |
| 2440 | # 4. Test PASSED iff flow defined in step 2 above verified; else FAILED |
| 2441 | |
Rich Lane | b90a1c4 | 2012-10-05 09:16:05 -0700 | [diff] [blame] | 2442 | class Flow_Mod_3(base_tests.SimpleProtocol): |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 2443 | """ |
| 2444 | Test FLOW_MOD_3 from draft top-half test plan |
| 2445 | |
| 2446 | INPUTS |
| 2447 | None |
| 2448 | """ |
| 2449 | |
| 2450 | def runTest(self): |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 2451 | logging.info("Flow_Mod_3 TEST BEGIN") |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 2452 | |
| 2453 | # Clear all flows from switch |
| 2454 | |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 2455 | logging.info("Deleting all flows from switch") |
Rich Lane | 32bf948 | 2013-01-03 17:26:30 -0800 | [diff] [blame] | 2456 | delete_all_flows(self.controller) |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 2457 | |
| 2458 | # Get switch capabilites |
| 2459 | |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 2460 | sw = Switch() |
Howard Persh | 8d21c1f | 2012-04-20 15:57:29 -0700 | [diff] [blame] | 2461 | self.assertTrue(sw.connect(self.controller), \ |
| 2462 | "Failed to connect to switch" \ |
| 2463 | ) |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 2464 | |
| 2465 | # Dream up some flow information, i.e. space to chose from for |
| 2466 | # random flow parameter generation |
| 2467 | |
| 2468 | fi = Flow_Info() |
| 2469 | fi.rand(10) |
| 2470 | |
| 2471 | # Dream up a flow config |
| 2472 | |
| 2473 | fc = Flow_Cfg() |
| 2474 | fc.rand(fi, \ |
Ed Swierk | 99a74de | 2012-08-22 06:40:54 -0700 | [diff] [blame] | 2475 | required_wildcards(self), \ |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 2476 | sw.tbl_stats.stats[0].wildcards, \ |
| 2477 | sw.sw_features.actions, \ |
Howard Persh | 8d21c1f | 2012-04-20 15:57:29 -0700 | [diff] [blame] | 2478 | sw.valid_ports, \ |
| 2479 | sw.valid_queues \ |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 2480 | ) |
| 2481 | fc = fc.canonical() |
| 2482 | |
| 2483 | # Send it to the switch |
| 2484 | |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 2485 | logging.info("Sending flow mod to switch:") |
| 2486 | logging.info(str(fc)) |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 2487 | ft = Flow_Tbl() |
| 2488 | fc.send_rem = False |
| 2489 | self.assertTrue(sw.flow_mod(fc, True), "Failed to modify flows") |
| 2490 | ft.insert(fc) |
| 2491 | |
| 2492 | # Do barrier, to make sure all flows are in |
| 2493 | |
| 2494 | self.assertTrue(sw.barrier(), "Barrier failed") |
| 2495 | |
| 2496 | result = True |
| 2497 | |
Howard Persh | 9cab482 | 2012-09-11 17:08:40 -0700 | [diff] [blame] | 2498 | sw.settle() # Allow switch to settle and generate any notifications |
| 2499 | |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 2500 | # Check for any error messages |
| 2501 | |
| 2502 | if not sw.errors_verify(0): |
| 2503 | result = False |
| 2504 | |
| 2505 | # Verify flow table |
| 2506 | |
| 2507 | sw.flow_tbl = ft |
| 2508 | if not sw.flow_tbl_verify(): |
| 2509 | result = False |
| 2510 | |
| 2511 | self.assertTrue(result, "Flow_Mod_3 TEST FAILED") |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 2512 | logging.info("Flow_Mod_3 TEST PASSED") |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 2513 | |
| 2514 | |
Howard Persh | 8d21c1f | 2012-04-20 15:57:29 -0700 | [diff] [blame] | 2515 | # FLOW MODIFY 3_1 |
| 2516 | |
| 2517 | # OVERVIEW |
| 2518 | # No-op modify |
| 2519 | # |
| 2520 | # PURPOSE |
| 2521 | # Verify that modify of a flow with new actions same as old ones operates correctly |
| 2522 | # |
| 2523 | # PARAMETERS |
| 2524 | # None |
| 2525 | # |
| 2526 | # PROCESS |
| 2527 | # 1. Delete all flows from switch |
| 2528 | # 2. Send single flow mod, as strict modify, to switch |
| 2529 | # 3. Verify flow table in switch |
| 2530 | # 4. Send same flow mod, as strict modify, to switch |
| 2531 | # 5. Verify flow table in switch |
| 2532 | # 6. Test PASSED iff flow defined in step 2 and 4 above verified; else FAILED |
| 2533 | |
Rich Lane | b90a1c4 | 2012-10-05 09:16:05 -0700 | [diff] [blame] | 2534 | class Flow_Mod_3_1(base_tests.SimpleProtocol): |
Howard Persh | 8d21c1f | 2012-04-20 15:57:29 -0700 | [diff] [blame] | 2535 | """ |
| 2536 | Test FLOW_MOD_3_1 from draft top-half test plan |
| 2537 | |
| 2538 | INPUTS |
| 2539 | None |
| 2540 | """ |
| 2541 | |
| 2542 | def runTest(self): |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 2543 | logging.info("Flow_Mod_3_1 TEST BEGIN") |
Howard Persh | 8d21c1f | 2012-04-20 15:57:29 -0700 | [diff] [blame] | 2544 | |
| 2545 | # Clear all flows from switch |
| 2546 | |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 2547 | logging.info("Deleting all flows from switch") |
Rich Lane | 32bf948 | 2013-01-03 17:26:30 -0800 | [diff] [blame] | 2548 | delete_all_flows(self.controller) |
Howard Persh | 8d21c1f | 2012-04-20 15:57:29 -0700 | [diff] [blame] | 2549 | |
| 2550 | # Get switch capabilites |
| 2551 | |
| 2552 | sw = Switch() |
| 2553 | self.assertTrue(sw.connect(self.controller), \ |
| 2554 | "Failed to connect to switch" \ |
| 2555 | ) |
| 2556 | |
| 2557 | # Dream up some flow information, i.e. space to chose from for |
| 2558 | # random flow parameter generation |
| 2559 | |
| 2560 | fi = Flow_Info() |
| 2561 | fi.rand(10) |
| 2562 | |
| 2563 | # Dream up a flow config |
| 2564 | |
| 2565 | fc = Flow_Cfg() |
| 2566 | fc.rand(fi, \ |
Ed Swierk | 99a74de | 2012-08-22 06:40:54 -0700 | [diff] [blame] | 2567 | required_wildcards(self), \ |
Howard Persh | 8d21c1f | 2012-04-20 15:57:29 -0700 | [diff] [blame] | 2568 | sw.tbl_stats.stats[0].wildcards, \ |
| 2569 | sw.sw_features.actions, \ |
| 2570 | sw.valid_ports, \ |
| 2571 | sw.valid_queues \ |
| 2572 | ) |
| 2573 | fc = fc.canonical() |
| 2574 | |
| 2575 | # Send it to the switch |
| 2576 | |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 2577 | logging.info("Sending flow mod to switch:") |
| 2578 | logging.info(str(fc)) |
Howard Persh | 8d21c1f | 2012-04-20 15:57:29 -0700 | [diff] [blame] | 2579 | ft = Flow_Tbl() |
| 2580 | fc.send_rem = False |
| 2581 | self.assertTrue(sw.flow_mod(fc, True), "Failed to modify flows") |
| 2582 | ft.insert(fc) |
| 2583 | |
| 2584 | # Do barrier, to make sure all flows are in |
| 2585 | |
| 2586 | self.assertTrue(sw.barrier(), "Barrier failed") |
| 2587 | |
| 2588 | result = True |
| 2589 | |
Howard Persh | 9cab482 | 2012-09-11 17:08:40 -0700 | [diff] [blame] | 2590 | sw.settle() # Allow switch to settle and generate any notifications |
| 2591 | |
Howard Persh | 8d21c1f | 2012-04-20 15:57:29 -0700 | [diff] [blame] | 2592 | # Check for any error messages |
| 2593 | |
| 2594 | if not sw.errors_verify(0): |
| 2595 | result = False |
| 2596 | |
| 2597 | # Verify flow table |
| 2598 | |
| 2599 | sw.flow_tbl = ft |
| 2600 | if not sw.flow_tbl_verify(): |
| 2601 | result = False |
| 2602 | |
| 2603 | # Send same flow to the switch again |
| 2604 | |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 2605 | logging.info("Sending flow mod to switch:") |
| 2606 | logging.info(str(fc)) |
Howard Persh | 8d21c1f | 2012-04-20 15:57:29 -0700 | [diff] [blame] | 2607 | self.assertTrue(sw.flow_mod(fc, True), "Failed to modify flows") |
| 2608 | |
| 2609 | # Do barrier, to make sure all flows are in |
| 2610 | |
| 2611 | self.assertTrue(sw.barrier(), "Barrier failed") |
| 2612 | |
Howard Persh | 9cab482 | 2012-09-11 17:08:40 -0700 | [diff] [blame] | 2613 | sw.settle() # Allow switch to settle and generate any notifications |
| 2614 | |
Howard Persh | 8d21c1f | 2012-04-20 15:57:29 -0700 | [diff] [blame] | 2615 | # Check for any error messages |
| 2616 | |
| 2617 | if not sw.errors_verify(0): |
| 2618 | result = False |
| 2619 | |
| 2620 | # Verify flow table |
| 2621 | |
| 2622 | if not sw.flow_tbl_verify(): |
| 2623 | result = False |
| 2624 | |
| 2625 | self.assertTrue(result, "Flow_Mod_3_1 TEST FAILED") |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 2626 | logging.info("Flow_Mod_3_1 TEST PASSED") |
Howard Persh | 8d21c1f | 2012-04-20 15:57:29 -0700 | [diff] [blame] | 2627 | |
| 2628 | |
Howard Persh | 07d99e6 | 2012-04-09 15:26:57 -0700 | [diff] [blame] | 2629 | # FLOW DELETE 1 |
| 2630 | # |
| 2631 | # OVERVIEW |
| 2632 | # Strict delete of single flow |
| 2633 | # |
| 2634 | # PURPOSE |
| 2635 | # Verify correct operation of strict delete of single defined flow |
| 2636 | # |
| 2637 | # PARAMETERS |
| 2638 | # None |
| 2639 | # |
| 2640 | # PROCESS |
| 2641 | # 1. Delete all flows from switch |
| 2642 | # 2. Send flow F to switch |
| 2643 | # 3. Send strict flow delete for F to switch |
| 2644 | # 4. Verify flow table in swtich |
| 2645 | # 6. Test PASSED iff all flows sent to switch in step 2 above, |
| 2646 | # less flow removed in step 3 above, are returned in step 4 above; |
| 2647 | # else test FAILED |
| 2648 | |
Rich Lane | b90a1c4 | 2012-10-05 09:16:05 -0700 | [diff] [blame] | 2649 | class Flow_Del_1(base_tests.SimpleProtocol): |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 2650 | """ |
| 2651 | Test FLOW_DEL_1 from draft top-half test plan |
| 2652 | |
| 2653 | INPUTS |
| 2654 | None |
| 2655 | """ |
| 2656 | |
| 2657 | def runTest(self): |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 2658 | logging.info("Flow_Del_1 TEST BEGIN") |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 2659 | |
| 2660 | # Clear all flows from switch |
| 2661 | |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 2662 | logging.info("Deleting all flows from switch") |
Rich Lane | 32bf948 | 2013-01-03 17:26:30 -0800 | [diff] [blame] | 2663 | delete_all_flows(self.controller) |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 2664 | |
| 2665 | # Get switch capabilites |
| 2666 | |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 2667 | sw = Switch() |
Howard Persh | 8d21c1f | 2012-04-20 15:57:29 -0700 | [diff] [blame] | 2668 | self.assertTrue(sw.connect(self.controller), \ |
| 2669 | "Failed to connect to switch" \ |
| 2670 | ) |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 2671 | |
| 2672 | # Dream up some flow information, i.e. space to chose from for |
| 2673 | # random flow parameter generation |
| 2674 | |
| 2675 | fi = Flow_Info() |
| 2676 | fi.rand(10) |
| 2677 | |
| 2678 | # Dream up a flow config |
| 2679 | |
| 2680 | fc = Flow_Cfg() |
| 2681 | fc.rand(fi, \ |
Ed Swierk | 99a74de | 2012-08-22 06:40:54 -0700 | [diff] [blame] | 2682 | required_wildcards(self), \ |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 2683 | sw.tbl_stats.stats[0].wildcards, \ |
| 2684 | sw.sw_features.actions, \ |
Howard Persh | 8d21c1f | 2012-04-20 15:57:29 -0700 | [diff] [blame] | 2685 | sw.valid_ports, \ |
| 2686 | sw.valid_queues \ |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 2687 | ) |
| 2688 | fc = fc.canonical() |
| 2689 | |
| 2690 | # Send it to the switch |
| 2691 | |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 2692 | logging.info("Sending flow add to switch:") |
| 2693 | logging.info(str(fc)) |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 2694 | ft = Flow_Tbl() |
| 2695 | fc.send_rem = False |
| 2696 | self.assertTrue(sw.flow_add(fc), "Failed to add flow") |
| 2697 | ft.insert(fc) |
| 2698 | |
| 2699 | # Dream up some different actions, with the same flow key |
| 2700 | |
| 2701 | fc2 = copy.deepcopy(fc) |
| 2702 | while True: |
| 2703 | fc2.rand_mod(fi, \ |
| 2704 | sw.sw_features.actions, \ |
Howard Persh | 8d21c1f | 2012-04-20 15:57:29 -0700 | [diff] [blame] | 2705 | sw.valid_ports, \ |
| 2706 | sw.valid_queues \ |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 2707 | ) |
| 2708 | if fc2 != fc: |
| 2709 | break |
| 2710 | |
| 2711 | # Delete strictly |
| 2712 | |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 2713 | logging.info("Sending strict flow del to switch:") |
| 2714 | logging.info(str(fc2)) |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 2715 | self.assertTrue(sw.flow_del(fc2, True), "Failed to delete flow") |
| 2716 | ft.delete(fc) |
| 2717 | |
| 2718 | # Do barrier, to make sure all flows are in |
| 2719 | |
| 2720 | self.assertTrue(sw.barrier(), "Barrier failed") |
| 2721 | |
| 2722 | result = True |
| 2723 | |
Howard Persh | 9cab482 | 2012-09-11 17:08:40 -0700 | [diff] [blame] | 2724 | sw.settle() # Allow switch to settle and generate any notifications |
| 2725 | |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 2726 | # Check for any error messages |
| 2727 | |
| 2728 | if not sw.errors_verify(0): |
| 2729 | result = False |
| 2730 | |
| 2731 | # Verify flow table |
| 2732 | |
| 2733 | sw.flow_tbl = ft |
| 2734 | if not sw.flow_tbl_verify(): |
| 2735 | result = False |
| 2736 | |
| 2737 | self.assertTrue(result, "Flow_Del_1 TEST FAILED") |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 2738 | logging.info("Flow_Del_1 TEST PASSED") |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 2739 | |
| 2740 | |
Howard Persh | 07d99e6 | 2012-04-09 15:26:57 -0700 | [diff] [blame] | 2741 | # FLOW DELETE 2 |
| 2742 | # |
| 2743 | # OVERVIEW |
| 2744 | # Loose delete of multiple flows |
| 2745 | # |
| 2746 | # PURPOSE |
| 2747 | # - Verify correct operation of loose delete of multiple flows |
| 2748 | # |
| 2749 | # PARAMETERS |
| 2750 | # Name: num_flows |
| 2751 | # Type: number |
| 2752 | # Description: |
| 2753 | # Number of flows to define |
| 2754 | # Default: 100 |
| 2755 | # |
| 2756 | # PROCESS |
| 2757 | # 1. Delete all flows from switch |
| 2758 | # 2. Generate <num_flows> distinct flow configurations |
| 2759 | # 3. Send <num_flows> flow adds to switch, for flows generated in step 2 above |
| 2760 | # 4. Pick 1 defined flow F at random |
| 2761 | # 5. Repeatedly wildcard out qualifiers in match of F, creating F', such that |
| 2762 | # F' will match more than 1 existing flow key |
| 2763 | # 6. Send loose flow delete for F' to switch |
| 2764 | # 7. Verify flow table in switch |
| 2765 | # 8. Test PASSED iff all flows sent to switch in step 3 above, less flows |
| 2766 | # removed in step 6 above (i.e. those that match F'), are returned |
| 2767 | # in step 7 above; |
| 2768 | # else test FAILED |
| 2769 | |
Rich Lane | b90a1c4 | 2012-10-05 09:16:05 -0700 | [diff] [blame] | 2770 | class Flow_Del_2(base_tests.SimpleProtocol): |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 2771 | """ |
| 2772 | Test FLOW_DEL_2 from draft top-half test plan |
| 2773 | |
| 2774 | INPUTS |
| 2775 | None |
| 2776 | """ |
| 2777 | |
| 2778 | def runTest(self): |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 2779 | logging.info("Flow_Del_2 TEST BEGIN") |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 2780 | |
Rich Lane | 2014f9b | 2012-10-05 15:29:40 -0700 | [diff] [blame] | 2781 | num_flows = test_param_get("num_flows", 100) |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 2782 | |
| 2783 | # Clear all flows from switch |
| 2784 | |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 2785 | logging.info("Deleting all flows from switch") |
Rich Lane | 32bf948 | 2013-01-03 17:26:30 -0800 | [diff] [blame] | 2786 | delete_all_flows(self.controller) |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 2787 | |
| 2788 | # Get switch capabilites |
| 2789 | |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 2790 | sw = Switch() |
Howard Persh | 8d21c1f | 2012-04-20 15:57:29 -0700 | [diff] [blame] | 2791 | self.assertTrue(sw.connect(self.controller), \ |
| 2792 | "Failed to connect to switch" \ |
| 2793 | ) |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 2794 | |
| 2795 | # Dream up some flow information, i.e. space to chose from for |
| 2796 | # random flow parameter generation |
| 2797 | |
| 2798 | fi = Flow_Info() |
Howard Persh | 3340d45 | 2012-04-06 16:45:21 -0700 | [diff] [blame] | 2799 | # Shrunk, to increase chance of meta-matches |
Howard Persh | 07d99e6 | 2012-04-09 15:26:57 -0700 | [diff] [blame] | 2800 | fi.rand(max(int(math.log(num_flows)) / 2, 1)) |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 2801 | |
| 2802 | # Dream up some flows |
| 2803 | |
| 2804 | ft = Flow_Tbl() |
Ed Swierk | 99a74de | 2012-08-22 06:40:54 -0700 | [diff] [blame] | 2805 | ft.rand(required_wildcards(self), sw, fi, num_flows) |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 2806 | |
| 2807 | # Send flow table to switch |
| 2808 | |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 2809 | logging.info("Sending flow adds to switch") |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 2810 | for fc in ft.values(): # Randomizes order of sending |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 2811 | logging.info("Adding flow:") |
| 2812 | logging.info(str(fc)); |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 2813 | self.assertTrue(sw.flow_add(fc), "Failed to add flow") |
| 2814 | |
| 2815 | # Do barrier, to make sure all flows are in |
| 2816 | |
| 2817 | self.assertTrue(sw.barrier(), "Barrier failed") |
| 2818 | |
| 2819 | result = True |
| 2820 | |
Howard Persh | 9cab482 | 2012-09-11 17:08:40 -0700 | [diff] [blame] | 2821 | sw.settle() # Allow switch to settle and generate any notifications |
| 2822 | |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 2823 | # Check for any error messages |
| 2824 | |
| 2825 | if not sw.errors_verify(0): |
| 2826 | result = False |
| 2827 | |
| 2828 | # Verify flow table |
| 2829 | |
| 2830 | sw.flow_tbl = ft |
| 2831 | if not sw.flow_tbl_verify(): |
| 2832 | result = False |
| 2833 | |
| 2834 | # Pick a random flow as a basis |
| 2835 | |
| 2836 | dfc = copy.deepcopy(ft.values()[0]) |
Howard Persh | 8d21c1f | 2012-04-20 15:57:29 -0700 | [diff] [blame] | 2837 | dfc.rand_mod(fi, \ |
| 2838 | sw.sw_features.actions, \ |
| 2839 | sw.valid_ports, \ |
| 2840 | sw.valid_queues \ |
| 2841 | ) |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 2842 | |
| 2843 | # Repeatedly wildcard qualifiers |
| 2844 | |
| 2845 | for wi in shuffle(range(len(all_wildcards_list))): |
| 2846 | w = all_wildcards_list[wi] |
| 2847 | if w == ofp.OFPFW_NW_SRC_MASK or w == ofp.OFPFW_NW_DST_MASK: |
| 2848 | n = wildcard_get(dfc.match.wildcards, w) |
| 2849 | if n < 32: |
Howard Persh | 3340d45 | 2012-04-06 16:45:21 -0700 | [diff] [blame] | 2850 | dfc.match.wildcards = wildcard_set(dfc.match.wildcards, \ |
| 2851 | w, \ |
| 2852 | random.randint(n + 1, 32) \ |
| 2853 | ) |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 2854 | else: |
| 2855 | continue |
| 2856 | else: |
| 2857 | if wildcard_get(dfc.match.wildcards, w) == 0: |
| 2858 | dfc.match.wildcards = wildcard_set(dfc.match.wildcards, w, 1) |
| 2859 | else: |
| 2860 | continue |
| 2861 | dfc = dfc.canonical() |
| 2862 | |
| 2863 | # Count the number of flows that would be deleted |
| 2864 | |
| 2865 | n = 0 |
| 2866 | for fc in ft.values(): |
| 2867 | if dfc.overlaps(fc, True): |
| 2868 | n = n + 1 |
| 2869 | |
| 2870 | # If more than 1, we found our loose delete flow spec |
| 2871 | if n > 1: |
| 2872 | break |
| 2873 | |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 2874 | logging.info("Deleting %d flows" % (n)) |
| 2875 | logging.info("Sending flow del to switch:") |
| 2876 | logging.info(str(dfc)) |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 2877 | self.assertTrue(sw.flow_del(dfc, False), "Failed to delete flows") |
| 2878 | |
| 2879 | # Do barrier, to make sure all flows are in |
| 2880 | self.assertTrue(sw.barrier(), "Barrier failed") |
| 2881 | |
Howard Persh | 9cab482 | 2012-09-11 17:08:40 -0700 | [diff] [blame] | 2882 | sw.settle() # Allow switch to settle and generate any notifications |
| 2883 | |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 2884 | # Check for error message |
| 2885 | |
| 2886 | if not sw.errors_verify(0): |
| 2887 | result = False |
| 2888 | |
| 2889 | # Apply flow mod to local flow table |
| 2890 | |
| 2891 | for fc in ft.values(): |
| 2892 | if dfc.overlaps(fc, True): |
| 2893 | ft.delete(fc) |
| 2894 | |
| 2895 | # Verify flow table |
| 2896 | |
| 2897 | sw.flow_tbl = ft |
| 2898 | if not sw.flow_tbl_verify(): |
| 2899 | result = False |
| 2900 | |
| 2901 | self.assertTrue(result, "Flow_Del_2 TEST FAILED") |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 2902 | logging.info("Flow_Del_2 TEST PASSED") |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 2903 | |
| 2904 | |
Howard Persh | 07d99e6 | 2012-04-09 15:26:57 -0700 | [diff] [blame] | 2905 | # FLOW DELETE 4 |
| 2906 | # |
| 2907 | # OVERVIEW |
| 2908 | # Flow removed messages |
| 2909 | # |
| 2910 | # PURPOSE |
| 2911 | # Verify that switch generates OFPT_FLOW_REMOVED/OFPRR_DELETE response |
| 2912 | # messages when deleting flows that were added with OFPFF_SEND_FLOW_REM flag |
| 2913 | # |
| 2914 | # PARAMETERS |
| 2915 | # None |
| 2916 | # |
| 2917 | # PROCESS |
| 2918 | # 1. Delete all flows from switch |
| 2919 | # 2. Send flow add to switch, with OFPFF_SEND_FLOW_REM set |
| 2920 | # 3. Send strict flow delete of flow to switch |
| 2921 | # 4. Verify that OFPT_FLOW_REMOVED/OFPRR_DELETE message is received from switch |
| 2922 | # 5. Verify flow table in switch |
| 2923 | # 6. Test PASSED iff all flows sent to switch in step 2 above, less flow |
| 2924 | # removed in step 3 above, are returned in step 5 above, and that |
| 2925 | # asynch message was received; else test FAILED |
| 2926 | |
| 2927 | |
Rich Lane | b90a1c4 | 2012-10-05 09:16:05 -0700 | [diff] [blame] | 2928 | class Flow_Del_4(base_tests.SimpleProtocol): |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 2929 | """ |
| 2930 | Test FLOW_DEL_4 from draft top-half test plan |
| 2931 | |
| 2932 | INPUTS |
| 2933 | None |
| 2934 | """ |
| 2935 | |
| 2936 | def runTest(self): |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 2937 | logging.info("Flow_Del_4 TEST BEGIN") |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 2938 | |
| 2939 | # Clear all flows from switch |
| 2940 | |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 2941 | logging.info("Deleting all flows from switch") |
Rich Lane | 32bf948 | 2013-01-03 17:26:30 -0800 | [diff] [blame] | 2942 | delete_all_flows(self.controller) |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 2943 | |
| 2944 | # Get switch capabilites |
| 2945 | |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 2946 | sw = Switch() |
Howard Persh | 8d21c1f | 2012-04-20 15:57:29 -0700 | [diff] [blame] | 2947 | self.assertTrue(sw.connect(self.controller), \ |
| 2948 | "Failed to connect to switch" \ |
| 2949 | ) |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 2950 | |
| 2951 | # Dream up some flow information, i.e. space to chose from for |
| 2952 | # random flow parameter generation |
| 2953 | |
| 2954 | fi = Flow_Info() |
| 2955 | fi.rand(10) |
| 2956 | |
| 2957 | # Dream up a flow config |
| 2958 | |
| 2959 | fc = Flow_Cfg() |
| 2960 | fc.rand(fi, \ |
Ed Swierk | 99a74de | 2012-08-22 06:40:54 -0700 | [diff] [blame] | 2961 | required_wildcards(self), \ |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 2962 | sw.tbl_stats.stats[0].wildcards, \ |
| 2963 | sw.sw_features.actions, \ |
Howard Persh | 8d21c1f | 2012-04-20 15:57:29 -0700 | [diff] [blame] | 2964 | sw.valid_ports, \ |
| 2965 | sw.valid_queues \ |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 2966 | ) |
| 2967 | fc = fc.canonical() |
| 2968 | |
| 2969 | # Send it to the switch. with "notify on removed" |
| 2970 | |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 2971 | logging.info("Sending flow add to switch:") |
| 2972 | logging.info(str(fc)) |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 2973 | ft = Flow_Tbl() |
| 2974 | fc.send_rem = True |
| 2975 | self.assertTrue(sw.flow_add(fc), "Failed to add flow") |
| 2976 | ft.insert(fc) |
| 2977 | |
| 2978 | # Dream up some different actions, with the same flow key |
| 2979 | |
| 2980 | fc2 = copy.deepcopy(fc) |
| 2981 | while True: |
| 2982 | fc2.rand_mod(fi, \ |
| 2983 | sw.sw_features.actions, \ |
Howard Persh | 8d21c1f | 2012-04-20 15:57:29 -0700 | [diff] [blame] | 2984 | sw.valid_ports, \ |
| 2985 | sw.valid_queues \ |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 2986 | ) |
| 2987 | if fc2 != fc: |
| 2988 | break |
| 2989 | |
| 2990 | # Delete strictly |
| 2991 | |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 2992 | logging.info("Sending strict flow del to switch:") |
| 2993 | logging.info(str(fc2)) |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 2994 | self.assertTrue(sw.flow_del(fc2, True), "Failed to delete flow") |
| 2995 | ft.delete(fc) |
| 2996 | |
| 2997 | # Do barrier, to make sure all flows are in |
| 2998 | |
| 2999 | self.assertTrue(sw.barrier(), "Barrier failed") |
| 3000 | |
| 3001 | result = True |
| 3002 | |
Howard Persh | 9cab482 | 2012-09-11 17:08:40 -0700 | [diff] [blame] | 3003 | sw.settle() # Allow switch to settle and generate any notifications |
| 3004 | |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 3005 | # Check for expected "removed" message |
| 3006 | |
Howard Persh | 3340d45 | 2012-04-06 16:45:21 -0700 | [diff] [blame] | 3007 | if not sw.errors_verify(0): |
| 3008 | result = False |
| 3009 | |
| 3010 | if not sw.removed_verify(1): |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 3011 | result = False |
| 3012 | |
| 3013 | # Verify flow table |
| 3014 | |
| 3015 | sw.flow_tbl = ft |
| 3016 | if not sw.flow_tbl_verify(): |
| 3017 | result = False |
| 3018 | |
| 3019 | self.assertTrue(result, "Flow_Del_4 TEST FAILED") |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 3020 | logging.info("Flow_Del_4 TEST PASSED") |
root | f6af167 | 2012-04-06 09:46:29 -0700 | [diff] [blame] | 3021 | |